wxPython色环电阻计算器
作者:吴越南蛮 发布时间:2023-12-21 20:08:54
标签:wxPython,计算器
本文实例为大家分享了wxPython色环电阻计算器的具体代码,供大家参考,具体内容如下
import wx # 导入wxPython
class MyFrame(wx.Frame):
def __init__(self,parent,id):
wx.Frame.__init__(self, parent, id, "色环电阻计算器2.0",size=(600,450))
self.panel = wx.Panel(self) # 创建画板(设置程序标题,大小)
self.font1 = wx.Font(20,wx.DEFAULT,wx.FONTSTYLE_NORMAL,wx.NORMAL,faceName="黑体")
self.font2 = wx.Font(16,wx.DEFAULT,wx.FONTSTYLE_NORMAL,wx.NORMAL,faceName="黑体")
self.choices = ['黑', '棕', '红', '橙', '黄', '绿', '蓝', '紫', '灰', '白', '金', '银']
self.choices2 = ['黑', '棕', '红', '绿', '蓝', '紫', '灰', '金', '银']
self.choices3 = ['black','brown','red','coral','yellow','green','blue','purple','grey','white','gold','light grey']
self.choices4 = ['black','brown','red','green','blue','purple','grey','gold','light grey']
self.error_code = ['20', '1', '2', '0.5', '0.25', '0.1', '0.05', '5', '10']
self.IsFive = True
self.Init_Panel()
def Init_Panel(self):
self.Create_display_part()
self.Create_resistant()
self.bt_change = wx.Button(self.panel, label='切换为4色环', pos=(400, 250), size=(150, 50))
self.bt_change.SetFont(self.font2)
self.bt_change.Bind(wx.EVT_BUTTON, self.Event_Change)
self.Create_display5()
def Event_Change(self,event):
self.radiobox1.Destroy()
self.radiobox2.Destroy()
self.radiobox3.Destroy()
self.radiobox4.Destroy()
self.colour_1.Destroy()
self.colour_2.Destroy()
self.colour_3.Destroy()
self.colour_4.Destroy()
if self.IsFive == True:
self.bt_change.SetLabel('切换为5色环')
self.radiobox5.Destroy()
self.colour_5.Destroy()
self.Create_display4()
self.IsFive = False
else:
self.bt_change.SetLabel('切换为4色环')
self.Create_display5()
self.IsFive = True
def Event_radiobox(self,event):
self.colour_1.Destroy()
self.colour_2.Destroy()
self.colour_3.Destroy()
self.colour_4.Destroy()
one = self.radiobox1.GetSelection()
two = self.radiobox2.GetSelection()
three = self.radiobox3.GetSelection()
four = self.radiobox4.GetSelection()
if self.IsFive == True:
self.colour_5.Destroy()
five = self.radiobox5.GetSelection()
if four > 9:
temp = 9 - four
else:
temp = four
result = (one * 100 + two * 10 + three) * (pow(10, temp))
error = self.error_code[five]
self.display(result, error)
self.colour_1 = self.Create_Colourbar(200, self.choices3[one])
self.colour_2 = self.Create_Colourbar(240, self.choices3[two])
self.colour_3 = self.Create_Colourbar(280, self.choices3[three])
self.colour_4 = self.Create_Colourbar(320, self.choices3[four])
self.colour_5 = self.Create_Colourbar(360, self.choices4[five])
else:
if three > 8:
temp = 8 - three
else:
temp = three + 1
result = (one * 10 + two) * (pow(10, temp))
error = self.error_code[four]
self.display(result, error)
self.colour_1 = self.Create_Colourbar(200, self.choices3[one])
self.colour_2 = self.Create_Colourbar(250, self.choices3[two])
self.colour_3 = self.Create_Colourbar(300, self.choices3[three + 1])
self.colour_4 = self.Create_Colourbar(350, self.choices4[four])
def Create_display_part(self):
label_resistance = wx.StaticText(self.panel, label="阻值:",pos=(400,25))
label_error = wx.StaticText(self.panel, label="误差:±",pos=(400,125))
label_percentage = wx.StaticText(self.panel, label="%",pos=(520,150))
self.label_ohm = wx.StaticText(self.panel, label="Ω", pos=(520, 50))
self.text_resistance = wx.TextCtrl(self.panel, value='0.00',pos=(400, 50), style=wx.TE_RIGHT | wx.TE_READONLY)
self.text_error = wx.TextCtrl(self.panel, value='20',pos=(400, 150), style=wx.TE_RIGHT | wx.TE_READONLY)
label_resistance.SetFont(self.font2)
label_error.SetFont(self.font2)
label_percentage.SetFont(self.font2)
self.label_ohm.SetFont(self.font2)
self.text_resistance.SetFont(self.font2)
self.text_error.SetFont(self.font2)
self.text_resistance.SetBackgroundColour('white')
self.text_error.SetBackgroundColour('white')
def Create_resistant(self):
body = wx.StaticText(self.panel, pos=(170, 330), size=(240, 50))
body.SetBackgroundColour('light blue')
left_pin = wx.StaticText(self.panel, pos=(20, 350), size=(150, 5))
left_pin.SetBackgroundColour('white')
right_pin = wx.StaticText(self.panel, pos=(410, 350), size=(150, 5))
right_pin.SetBackgroundColour('white')
def Create_display4(self):
self.radiobox1 = self.Create_radiobox('1',0,self.choices[:-2])
self.radiobox2 = self.Create_radiobox('2',100, self.choices[:-2])
self.radiobox3 = self.Create_radiobox('3',200, self.choices[1:])
self.radiobox4 = self.Create_radiobox('4',300, self.choices2)
self.colour_1 = self.Create_Colourbar(200,'black')
self.colour_2 = self.Create_Colourbar(250,'black')
self.colour_3 = self.Create_Colourbar(300,'brown')
self.colour_4 = self.Create_Colourbar(350,'black')
def Create_display5(self):
self.radiobox1 = self.Create_radiobox('1', 0, self.choices[:-2])
self.radiobox2 = self.Create_radiobox('2', 75, self.choices[:-2])
self.radiobox3 = self.Create_radiobox('3', 150, self.choices[:-2])
self.radiobox4 = self.Create_radiobox('4', 225, self.choices)
self.radiobox5 = self.Create_radiobox('5', 300, self.choices2)
self.colour_1 = self.Create_Colourbar(200, 'black')
self.colour_2 = self.Create_Colourbar(240, 'black')
self.colour_3 = self.Create_Colourbar(280, 'black')
self.colour_4 = self.Create_Colourbar(320, 'black')
self.colour_5 = self.Create_Colourbar(360, 'black')
def Create_radiobox(self, label_num, abscissa, choices):
label = '第' + label_num + '位'
pos = (abscissa,0)
radiobox = wx.RadioBox(self.panel, -1, label, pos, choices=choices, majorDimension=1)
radiobox.Bind(wx.EVT_RADIOBOX, self.Event_radiobox)
return radiobox
def Create_Colourbar(self,abscissa,colour):
pos = (abscissa,330)
colour_bar = wx.StaticText(self.panel,pos=pos, size=(30, 50))
colour_bar.SetBackgroundColour(colour)
return colour_bar
def display(self,a,b):
if a>=1000000:
a="%.2f"%(a/1000000)
self.label_ohm.SetLabel('MΩ')
elif 1000<=a<=1000000:
a="%.2f"%(a/1000)
self.label_ohm.SetLabel('KΩ')
else:
a="%.2f"%(a)
self.label_ohm.SetLabel('Ω')
self.text_resistance.SetValue(a)
self.text_error.SetValue(b)
if __name__ =='__main__':
app = wx.App()
myframe = MyFrame(None,-1)
myframe.Show()
app.MainLoop()
来源:https://blog.csdn.net/weixin_43069875/article/details/103098346


猜你喜欢
- 使用图层可以像素为单位精确定位页面元素,并且可以将层放置在页面的任意位置。当把页面元素放入图层之中时,还可以控制哪个显示在前面、哪个显示在后
- 本文实例讲述了原生JS实现Ajax通过POST方式与PHP进行交互的方法。分享给大家供大家参考,具体如下:一、代码conn.php<?
- 一 模板语法传值方式一:# urls.pypath('template', views.template)# views.p
- 下面的例子将结合项目实际运用来使用Jquery.TreeView,当然在使用控件树需要现在相应的js文件 下面就把我生成的TreeView展
- 一直以来,ACCESS数据库中的申报数据在分公司与总公司之间传递,用EXCEL或DBASE、TXT甚至ACCESS等格式,我总觉得不太理想。
- 前言:Python内置对SMTP的支持,可以发送纯文本邮件、HTML邮件以及带附件的邮件。Python对SMTP支持有smtplib和ema
- 找到detect.py,在大概113行,找到plot_one_box &
- 案例场景 今天在线上发现一个问题,由于监控没有覆盖到,某台机器的磁盘被写满了,导致线上My
- //创建组件 function createobj() { if (window.ActiveXObject) { return(new A
- 1、参数个数控制parser.add_argument('-i', '--integers', nargs=
- 几个方式(本文不作介绍),要将Session保存到SQL Server中,需要有以下几个步骤:1.首先要创建用于保存Session数据的数据
- 一、官方解释:1.v-if 是“真正”的条件渲染,因为它会确保在切换过程中条件块内的事件 * 和子组件适当地被销毁和重建。2.v-if 也是
- 第一种:i=0sum=0a=0while i<102: if i>=1 and i%4==1: sum+=i eli
- 一SQL报表常常会遇到在表格中的相除,如果分母为零,一般会显示错误号,我们可以这么处理:(加上是A/B)=A / iif(B=0,99999
- 前言在开始本文之前,先来介绍一下相关内容,大家都知道一些防护SSRF漏洞的代码一般使用正则来判断访问IP是否为内部IP,比如下面这段网上比较
- 第一次写这类文章,有点儿紧张有点儿新奇有点儿痛苦,来CDC实习2个月啦,每天除了工作就是体验体验再体验,因为之前做了一些有关规范的工作,突然
- YAML是一种直观的能够被电脑识别的的数据序列化格式,容易被人类阅读,并且容易和脚本语言交互。YAML类似于XML,但是语法比XML简单得多
- 映射类型 — dict字典可用多种方式来创建:使用花括号内以逗号分隔键: 值对的方式: {‘jack
- PyQt5 QtChart-区域图QAreaSeries用于创建区域图数据,传入两个QLineSeries对象。核心代码:series0 =
- 对MySQL的用户而言,备受诟病的一个问题就是导入SQL备份文件时不能并发,使得导入的效率很低。今天,我们就来改变下思路,尝试一下并发导入的