コード例 #1
0
ファイル: ACHPMainFrame.py プロジェクト: yuson95/ACHP
 def SelectCoolingCoilTube(self, event):
     TubeSelect = TubeSelectClass(self, -1, "")
     TubeSelect.setTarget(self.txtCoolingCoilTubesOD,
                          self.txtCoolingCoilTubesID)
     wx.GetApp().SetTopWindow(TubeSelect)
     TubeSelect.Show()
コード例 #2
0
ファイル: ACHPMainFrame.py プロジェクト: yuson95/ACHP
 def SelectLineSetSupplyTube(self, event):
     TubeSelect = TubeSelectClass(self, -1, "")
     TubeSelect.setTarget(self.txtLineSetOD_supply,
                          self.txtLineSetID_supply)
     wx.GetApp().SetTopWindow(TubeSelect)
     TubeSelect.Show()
コード例 #3
0
ファイル: ACHPMainFrame.py プロジェクト: yuson95/ACHP
 def SelectEvaporatorTube(self, event):
     TubeSelect = TubeSelectClass(self, -1, "")
     TubeSelect.setTarget(self.txtEvaporatorTubesOD,
                          self.txtEvaporatorTubesID)
     wx.GetApp().SetTopWindow(TubeSelect)
     TubeSelect.Show()
コード例 #4
0
ファイル: ACHPMainFrame.py プロジェクト: yuson95/ACHP
 def SelectLineSetReturnTube(self, event):
     TubeSelect = TubeSelectClass(self, -1, "")
     TubeSelect.setTarget(self.txtLineSetOD_return,
                          self.txtLineSetID_return)
     wx.GetApp().SetTopWindow(TubeSelect)
     TubeSelect.Show()