私はTkinterを使ってGUIを作成しています。私はすべての私のGUI要素といくつかの機能を行う別のクラスを設定するためのクラスを持っています。この上記のコードは、他のクラスのメソッドを呼び出すか、私はGUIの__init__
方法でクラスをインスタンス化する必要があるために正しい方法python Tkinterボタンのプレスからクラスメソッドを呼び出す
class class_one():
def method_one(self):
do_something()
class GUI()
def __init__(self):
button = Button(self, text="button", command=call_class_one_method)
button.pack()
def call_class_one_method(self):
c = class_one()
c.method_one()
ですか?それとも別の何か?
ありがとうございました。 – eggman