wxpython自定义下拉列表框过程图解

作者:傅延年 时间:2023-11-14 04:01:18 

这篇文章主要介绍了wxpython自定义下拉列表框过程图解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

自定义wxpython下拉列表框,支持修改边框颜色,按钮图标的动态变换

原理同前两片文章一样,使用了两个wx.staticText做边框,一个文本框来显示下拉列表的数据,和一个图片按钮,实现下拉的标志,和一个自带的列表框,

影藏该列表框,不要原来的样式,这里只需要使用它的展示列表的数据功能

wxpython自定义下拉列表框过程图解

自定义列表框的代码:


class MyComBox:
 """自定义下拉列表框"""
 def __init__(self,parent,pos,size=(200,35),choices=[],readOnly=False,borderColor='#EAEAEA',borderSize=1):
   self.defaultfontSize = 10
   self.defaultBorderColor = '#EAEAEA'
   self.defaultFontColor = 'black'

self.textCtrl,self.combox,self.background,self.arrow_button = self.__CreateComBox(parent,pos,size,
                                            choices,readOnly,borderColor,borderSize)
 def __CreateComBox(self,parent,pos,size,list,readOnly,borderColor,borderSize):
   #创建边框
   border = wx.StaticText(parent,-1,"",pos=pos,size=size)
   border.SetBackgroundColour(borderColor)
   bg = wx.StaticText(border,-1,"",size=((size[0]-borderSize*2),(size[1]-borderSize*2)),pos=(borderSize,borderSize))
   style = wx.TE_READONLY | wx.NO_BORDER

#创建数据展示框
   self.textCtrl = wx.TextCtrl(bg,-1,size=((size[0]-30),(self.defaultfontSize*2)),
                 pos=(5,(size[1]-2*self.defaultfontSize-borderSize*2)/2),style= style)
   self.textCtrl.SetBackgroundColour('white')
   #点击文本框显示数据
   if not readOnly:
     self.textCtrl.Bind(wx.EVT_LEFT_DOWN,self.__OnClick)

#创建下拉点击按钮
   bmp = wx.Image("xia.jpg",wx.BITMAP_TYPE_ANY).ConvertToBitmap()
   arrow_button = wx.BitmapButton(bg,-1,bmp,size = (20,size[1]),pos=(size[0]-22,0),style =wx.NO_BORDER)

#构建列表框,展示列表的数据
   self.chooseBox = wx.ComboBox(parent,-1,value="",size=(size[0],-1),pos = (pos[0],pos[1]+10),choices=list,style=wx.TE_READONLY)
   self.chooseBox.Hide()
   self.chooseBox.Bind(wx.EVT_COMBOBOX_CLOSEUP,self.__GetValue)

#设置显示下列列表按钮
   arrow_button.SetBackgroundColour('white')
   font = wx.Font(self.defaultfontSize,wx.DEFAULT,wx.NORMAL,wx.NORMAL,False,'微软雅黑')
   self.textCtrl.SetFont(font)

#设置只读情况的样式
   if readOnly:
     bg.SetBackgroundColour('rgb(240,240,240)')
     self.textCtrl.SetBackgroundColour('rgb(240,240,240)')
     arrow_button.SetBackgroundColour('rgb(240,240,240)')
   else:
    # bg.SetBackgroundColour(self.textCtrl.GetBackgroundColour())
     arrow_button.Bind(wx.EVT_BUTTON,self.__OnClick)

return self.textCtrl,self.chooseBox,border,arrow_button

def __GetValue(self,event):
   if self.chooseBox.GetValue()!='':
     self.textCtrl.SetValue(self.chooseBox.GetValue())
     self.chooseBox.Hide()
     bmp = wx.Image("xia.jpg",wx.BITMAP_TYPE_ANY).ConvertToBitmap()
     self.arrow_button.SetBitmap(bmp)
   if self.chooseBox.GetValue()!='请选择':
     self.textCtrl.SetForegroundColour(self.defaultFontColor)

def __OnClick(self,event):
   self.chooseBox.Show()
   self.chooseBox.Popup()
   bmp = wx.Image("shang.jpg", wx.BITMAP_TYPE_ANY).ConvertToBitmap()
   self.arrow_button.SetBitmap(bmp)

def GetValue(self):
   return self.textCtrl.GetValue()

def SetValue(self,value):
   if not value:
     value = u'请选择'
   self.textCtrl.SetValue(value)
   self.combox.SetValue(value)

def SetList(self,list):
   """设置下拉列表中的数据"""
   self.combox.SetItems(list)

def SetBorderColor(self,color):
   self.background.SetBackgroundColour(color)

def SetFont(self,font):
   self.textCtrl.SetFont(font)

def SetForegroundColour(self,color):
   self.textCtrl.SetForegroundColour(color)

def Bind(self, event, handler, source=None, id=wx.ID_ANY, id2=wx.ID_ANY):
   self.textCtrl.Bind(event,handler)

图片:, ,这个需要下载下去,或者自己找漂亮的图片

测试代码:


# coding:utf-8
import wx

from wxpython import Mywxpython

app = wx.App()
frame = wx.Frame(None, title="Gui Test Editor", pos=(1000, 200), size=(500, 400))

panel = wx.Panel(frame)
panel.SetBackgroundColour('white')
# path_text = wx.TextCtrl(panel, size=(260, 36))
#
# my_text = Mywxpython.MyText(panel,pos=(10, 50),size=(260,36))
# my_text1 = Mywxpython.MyText(panel,pos=(10, 100),size=(260,36),readOnly=True)
# my_text.SetBorderColor('red')
list = ['1','2','3','4']
#wx.ComboBox(panel,-1,value="",size=(80,-1),pos = (100,110),choices=list,style=wx.TE_READONLY)

#my_button = Mywxpython.MyButton(panel,title="点我",pos=(10, 150))
combox = Mywxpython.MyComBox(panel,choices=['1','2','3','4'],pos=(10, 150))
#combox .SetValue("请选择")
frame.Show()
app.MainLoop()

结果图:

wxpython自定义下拉列表框过程图解

按钮又有点丑,需要自己定义,搞两个好看得图标,

来源:https://www.cnblogs.com/licorice/p/10171793.html

标签:wx,python,列表,框
0
投稿

猜你喜欢

  • MySQL注入绕开过滤的技巧总结

    2024-01-14 10:42:52
  • python实现从ftp服务器下载文件的方法

    2023-08-02 20:50:54
  • PyTorch之nn.ReLU与F.ReLU的区别介绍

    2021-01-19 04:47:24
  • python实现简单的购物程序代码实例

    2022-09-03 05:29:13
  • 斜角滑动门导航条 DIV+CSS

    2008-07-19 15:45:00
  • 详解Python匿名函数(lambda函数)

    2022-09-11 12:33:00
  • python类参数self使用示例

    2023-05-27 17:15:18
  • Ubuntu查看修改mysql的登录名和密码、安装phpmyadmin

    2023-11-21 23:36:59
  • 简单的asp采集代码教程

    2011-04-18 10:39:00
  • Python解压 rar、zip、tar文件的方法

    2023-07-22 10:51:38
  • Python中常见的加密解密算法总结

    2021-10-18 12:13:17
  • Laravel框架执行原生SQL语句及使用paginate分页的方法

    2023-11-24 00:27:24
  • python3读取文件指定行的三种方法

    2023-03-23 12:27:20
  • pandas中的ExcelWriter和ExcelFile的实现方法

    2023-09-20 00:10:36
  • Python利用递归和walk()遍历目录文件的方法示例

    2021-08-06 00:02:54
  • golang 在windows中设置环境变量的操作

    2024-04-28 09:12:29
  • Python如何快速上手? 快速掌握一门新语言的方法

    2023-05-07 12:00:48
  • python3 常见解密加密算法实例分析【base64、MD5等】

    2023-06-05 01:03:42
  • Django-xadmin+rule对象级权限的实现方式

    2023-02-20 17:08:08
  • python实现日常记账本小程序

    2023-09-06 18:00:49
  • asp之家 网络编程 m.aspxhome.com