将使用Tkinter按钮打开的文件名传递给另一个函数

时间:2016-01-15 06:48:33

标签: python button tkinter

在python中使用TKinter遇到一些麻烦。在慢慢构建具有单个主窗口和4个选项卡(笔记本)的简单程序时,我遇到了如何将文件名传递给需要它的函数的问题。

我有一个打开文件对话框的按钮,允许用户选择文件并(希望)检索文件名。我有另一个按钮设置(希望)触发一个进程,所选文件的名称作为参数传递给命令中调用的方法。现在,我可以触发打开文件对话框,并将文件名打印到控制台,但我无法弄清楚如何将此文件名传递给delineate命令(这将最终触发一个不同的脚本,文件名作为输入脚本)。我已经设置好了,以便在“定位”时使用。按钮被触发,它显示' Delineating ....'在窗户上。我的目标是能够显示'描述X',其中X是打开的文件的名称,并将此名称传递给另一个脚本。如果我能够达到'划定X'正确显示,我的意思是文件名已经通过,我想我可以做其余的事情......

以下是代码:

from Tkinter import *
import ttk
import tkFileDialog
import tkMessageBox
import Tkconstants

class Unified_Tool(ttk.Frame):
    # =============================================================================
    # Main setup options
    def __init__(self, isapp=True, name='unified_tool'):
        ttk.Frame.__init__(self, name=name)
        self.master.title("Unified Tool")
        self.pack(expand=Y, fill=BOTH)
        self.isapp = isapp
        self._create_widgets()
        file_name = StringVar()

    def _create_widgets(self):
        self._create_panels()

    def _create_panels(self):
        panel = Frame(self, name='panel')
        panel.pack(side=TOP, fill=BOTH, expand=Y)
        # create the notebook
        nb = ttk.Notebook(panel, name='notebook_panel')
        nb.pack(fill=BOTH, expand=Y, padx=2, pady=3)
        self._create_ca_del_tab(nb)
        #self._create_traversal_tab(nb)
        #self._create_tot_tab(nb)
        #self._create_zcc_tab(nb)

    # =============================================================================
    # Delineation tab
    def load_file(self):
        file_name = tkFileDialog.askopenfilename(filetypes=([('All files', '*.*'),
                                                               ('Text files', '*.txt'),
                                                               ('CSV files', '*.csv')]))
        print file_name

    # =============================================================================
    # Delineation tab
    def _create_ca_del_tab(self, nb):

        # variable to store the filename
        del_filename = StringVar()

        # frame to hold content
        frame = ttk.Frame(nb, name='ca_delineation')

        # widgets to be displayed on 'Description' tab
        msg = ["For delineating the catchment area of a point or collection of points. In "
               "the file selection box to the left, select the input file containing the points "
               "for catchment area delineation."]
        lbl_intro = ttk.Label(frame, wraplength='4i', justify=LEFT, anchor=N,
                        text=''.join(msg))

        # button for selecting the input file
        btn_del_select_file = ttk.Button(frame, text="Browse", command=self.load_file, width=10)
        # button for triggering the task
        btn_del = ttk.Button(frame, text='Delineate!', underline=0,
                              command=lambda v=del_filename: self._delineate(del_filename))

        # label that displays the input file name
        lbl_del = ttk.Label(frame, textvariable=del_filename, name='delineate')

        # position and set resize behaviour
        lbl_intro.grid(row=0, column=0, columnspan=2, sticky='new', pady=5)
        lbl_del.grid(row=1, column=1,  pady=(2,4))
        btn_del_select_file.grid(row=1, column=0, pady=(2,4))
        btn_del.grid(row=2, column=0, pady=(2,4))
        frame.rowconfigure(1, weight=1)
        frame.columnconfigure((0,1), weight=1, uniform=1)

        # add to notebook (underline = index for short-cut character)
        nb.add(frame, text='CA Delineation', underline=0, padding=2)

    def _delineate(self, v):
        v.set('Delineating....')
        self.update()

2 个答案:

答案 0 :(得分:2)

只需将file_name作为实例变量,而不是临时变量:

def load_file(self):
    self.file_name = tkFileDialog.askopenfilename(filetypes=([('All files', '*.*'),
                                                           ('Text files', '*.txt'),
                                                           ('CSV files', '*.csv')]))
    print self.file_name

然后您将在self.filename课程内的任何地方Unified_Tool进行访问。

答案 1 :(得分:0)

只需在load_file函数内部设置全局变量,然后将file_name导出到其他函数,如下所示:

def load_file(self):
    global csv_filename
    self.file_name = tkFileDialog.askopenfilename(filetypes=([('All files', '*.*'),('Text files', '*.txt'),('CSV files', '*.csv')])
    csv_filename = self.filename
    print self.file_name

从这里开始,您可以将csv_filename用作load_file函数的输出。