0

私は Qt と Python の PySide の初心者で、解決方法がわからない問題に直面しています。私は FreeCAD で作業しており、プッシュ ボタンを備えた単純なウィンドウを設計しようとしていますが、機能させることができません。それらをクリックすると、テキストが変更されるはずですが、何も起こりません。これが私のコードの一部です:

class ManageDialog:
    def __init__(self, path):
        self.form = FreeCADGui.PySideUic.loadUi(path)
        self.form.setWindowTitle("Linked files manager")
       
        QListWidgetItem("First item", self.form.listWidget)
        QListWidgetItem("Second item", self.form.listWidget)

        self.form.RemoveButton.clicked.connect(self.remove)

        self.form.show()
    
    def remove(self):
        self.form.RemoveButton.setText("File removed")

path_to_ui = FreeCAD.getHomePath() + "/Mod/ThesisExistingBridges/ManageDialog.ui"
w = ManageDialog(path_to_ui)

私のウィンドウは、Qt Creator で作成された UI ファイルに従って作成されます。ウィンドウのデザインも正しく、たとえばリスト ウィジェットに項目を追加できますが、クリックしてもボタンがアクティブになりません。

UI ファイルのサンプルを次に示します。

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Dialog</class>
 <widget class="QDialog" name="Dialog">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>494</width>
    <height>459</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>Dialog</string>
  </property>
  <widget class="QListWidget" name="listWidget">
   <property name="geometry">
    <rect>
     <x>10</x>
     <y>10</y>
     <width>471</width>
     <height>401</height>
    </rect>
   </property>
  </widget>
  <widget class="QWidget" name="horizontalLayoutWidget">
   <property name="geometry">
    <rect>
     <x>10</x>
     <y>420</y>
     <width>195</width>
     <height>31</height>
    </rect>
   </property>
   <layout class="QHBoxLayout" name="horizontalLayout">
    <item>
     <widget class="QPushButton" name="RemoveButton">
      <property name="text">
       <string>Remove</string>
      </property>
     </widget>
    </item>
    <item>
     <widget class="QPushButton" name="ReloadFromButton">
      <property name="text">
       <string>Reload from</string>
      </property>
      <property name="autoDefault">
       <bool>false</bool>
      </property>
     </widget>
    </item>
   </layout>
  </widget>
  <widget class="QPushButton" name="OKButton">
   <property name="geometry">
    <rect>
     <x>390</x>
     <y>420</y>
     <width>93</width>
     <height>28</height>
    </rect>
   </property>
   <property name="text">
    <string>OK</string>
   </property>
  </widget>
 </widget>
 <resources/>
 <connections/>
</ui>
4

1 に答える 1