form builder 中怎么实现公式运算
发布网友
发布时间:2023-02-04 20:39
我来回答
共1个回答
热心网友
时间:2023-10-04 10:15
在你继承的类中写:
1
2
3
4
5
def btnFirstFuniction( self, event ):
num1=eval(self.m_textCtrl2.getValue())
num2=eval(self.m_textCtrl3.getValue())
ret=num1+num2
self.m_textCtrl6.setValue(str(ret))
下面的都差不多
1
2
3
4
5
6
7
8
def btnSeondFuniction( self, event ):
...
def btnThirdFuniction( self, event ):
...
def btnFourthFuniction( self, event ):
...
def btnFifithFuniction( self, event ):