Skip to content

TOpenTextFileDialogDemo 项目分析

项目信息

文件结构

TOpenTextFileDialogDemo/
├── Extractor_Icon.ico
├── Project1.py
├── Project1.xml
├── Unit1.py
├── Unit1.pydfm
├── Unit1.sct
├── Unit1.sfm

主程序文件: Project1.py

from glcl import *
from Unit1 import *

def main():
    Application.Initialize()
    Application.Title = 'Project1'
    Application.MainFormOnTaskbar = True
    Application.Icon.LoadFromFile(os.path.join(os.path.dirname(os.path.abspath(__file__)), "Extractor_Icon.ico"))
    MainForm = Form1(Application)
    MainForm.Show()
    FreeConsole()
    Application.Run()
    MainForm.Free()

if __name__ == '__main__':
    main()

单元文件: Unit1.py

import os
from glcl import *

class Form1(Form):

    def __init__(self, owner):
        self.Button1 = Button(self)
        self.Memo1 = Memo(self)
        self.OpenTextFileDialog1 = OpenTextFileDialog(self)
        self.LoadProps(os.path.join(os.path.dirname(os.path.abspath(__file__)), "Unit1.pydfm"))
        self.Button1.OnClick = self.Button1Click

        # 创建一个按钮,用于打开文件对话框
        self.open_button = Button(self)
        self.open_button.Parent = self  # 设置父控件为窗体
        self.open_button.Caption = "Open Text File" # 设置标题
        self.open_button.SetBounds(350, 80, 150, 30) # 设置位置和宽高

        # 为按钮设置点击事件
        self.open_button.OnClick = self.open_file_dialog

    def open_file_dialog(self, Sender):
        # 创建文本文件打开对话框
        dialog = OpenTextFileDialog(self)

        # 设置对话框的标题
        dialog.Title = "Select a Text File"

        # 设置过滤器,仅显示文本文件
        dialog.Filter = "Text Files (*.txt)|*.txt|All Files (*.*)|*.*"

        # 显示对话框并检查用户是否点击了“确定”
        if dialog.Execute():
            # 获取选中的文件名
            selected_file = dialog.FileName
            # 显示选中的文件名
            ShowMessage(f"Selected file: {selected_file}")

            # 这里可以添加代码读取文件内容或做其他操作

    def Button1Click(self, Sender):
        if self.OpenTextFileDialog1.Execute():
            self.Memo1.Lines.LoadFromFile(self.OpenTextFileDialog1.FileName)

设计文件: Unit1.sct

def Button1Click(Sender): 

设计文件: Unit1.sfm

object Form1: TForm
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 241
  ClientWidth = 404
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -15
  Font.Name = 'Segoe UI'
  Font.Style = []
  TextHeight = 20
  object Memo1: TMemo
    Left = 8
    Top = 8
    Width = 265
    Height = 193
    Lines.Strings = (
      'Memo1')
    ScrollBars = ssBoth
    TabOrder = 0
  end
  object Button1: TButton
    Left = 222
    Top = 208
    Width = 75
    Height = 25
    Caption = 'Button1'
    TabOrder = 1
    OnClick = Button1Click
  end
  object OpenTextFileDialog1: TOpenTextFileDialog
    Left = 184
    Top = 208
  end
end

其他文件

  • Extractor_Icon.ico
  • Project1.xml

详细分析

功能概述

对话框组件演示

使用的组件

  • Form1 (TForm)
  • Memo1 (TMemo)
  • Button1 (TButton)
  • OpenTextFileDialog1 (TOpenTextFileDialog)

技术特点

  • 包含4个GUI组件
  • 定义2个事件处理

窗体属性

  • caption: Button1
  • height: 241
  • width: 404

代码分析

导入的模块: - import os - from glcl import *

定义的类: - Form1

定义的方法: - init - open_file_dialog - Button1Click

事件绑定: - self.Button1.OnClick = self.Button1Click - self.open_button.OnClick = self.open_file_dialog