Kivy popup Filechooser传递变量(选择)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kivy popup Filechooser传递变量(选择)相关的知识,希望对你有一定的参考价值。

我想将选择变量从load_file_popup filechooser传递给GUI。当我在选择文件后按下加载按钮时会出错

TypeError:'NoneType'对象不可调用

这是我的代码(简化)

class GUI(BoxLayout):

    file_path = StringProperty("Currently No File")


    def __init__(self, **kwargs):
        super(GUI, self).__init__(**kwargs)
        self.load_file_popup = load_file_popup()



    def load(self, selection):
        self.file_path = str(selection[0])
        self.dismiss()


class load_file_popup(Popup):

    load = ObjectProperty()

这是kv

<load_file_popup>:
    title: "Select File"
    size_hint: .9, .9
    SMSBoxLayout:
        orientation: "vertical"
        FileChooser:
            id: filechooser   
            FileChooserIconLayout


        SMSBoxLayout:
            size_hint: (1, 0.1)
            pos_hint: {'center_x': .5, 'center_y': .5}
            SMSButton:
                text: "Cancel"
                on_release: root.dismiss()
            SMSButton:
                text: "Load"
                on_release: root.load(filechooser.selection)
                id: ldbtn
                disabled: True if filechooser.selection==[] else False
答案

我已经找到了问题的答案,我错过了一个论点。

def __init__(self, **kwargs):
    super(GUI, self).__init__(**kwargs)
    self.load_file_popup = load_file_popup(load=self.load)

def load(self, selection):
    self.file_path = str(selection[0])
    self.load_file_popup.dismiss()

以上是关于Kivy popup Filechooser传递变量(选择)的主要内容,如果未能解决你的问题,请参考以下文章

Kivy - 更改 FileChooser 默认位置

FileChooser 的字体颜色

Kivy:单击按钮时如何更新标签

在未调用 Popup.open() 的方法中触发 Popup.dismiss() (kivy)

如何在 Kivy 中使用 Popup 运行复选框小部件?

如何用绝对坐标定位 Kivy Popup?