python3.6.x 爬糗事百科(tkinter+PAGE) GUI版

今天又好好的研究了一下python tkinter,怎么样才能做得好看好用呢?如果只是常规方法实在是有点难度(用代码来写界面布局 )着实太难了)。上网搜了很久,终于找出了一款,不过不太好看,但确实能生出好看的界面。GUI代码得自己在生成的GUI代码中找寻,但是感觉不错,立即行动起用,将之前写的糗事百科整了个GUI,感觉好看多了。

如要做用这个tool(PAGE),请参考以下两个站点自行下载.
1. PAGE
http://page.sourceforge.net/
2. Tcl(8.6+)
https://www.activestate.com/activetcl/downloads

具体怎么应用这两个工具来整出好看的GUI呢?我好好整理一下,下个blog写个教程出来,先上今天整的糗事百科的界面, 感受一下它的美:


生成GUI的主要代码如下:

        disContentText = Text()
        disContentText.place(relx=0.01, rely=0.29, relheight=0.58, relwidth=0.98)
        disContentText.configure(background="white")
        disContentText.configure(font="TkTextFont")
        disContentText.configure(foreground="black")
        disContentText.configure(highlightbackground="#d9d9d9")
        disContentText.configure(highlightcolor="black")
        disContentText.configure(insertbackground="black")
        disContentText.configure(selectbackground="#c4c4c4")
        disContentText.configure(selectforeground="black")
        disContentText.configure(width=584)
        disContentText.configure(wrap=WORD)
        
        #当启动应用后先显示第一条糗百
        firstList = self.getOneHappy()
        self.openurl = firstList[-1].strip()
        disContentText.insert('insert', self.list2String(self.getOneHappy()))
        
        entry = Entry()
        entry.bind('<Return>', onBindentry)
        entry.place(relx=0.03, rely=0.89,height=27, relwidth=0.19)
        entry.configure(background="white")
        entry.configure(disabledforeground="#a3a3a3")
        entry.configure(font="TkFixedFont")
        entry.configure(foreground="#000000")
        entry.configure(highlightbackground="#d9d9d9")
        entry.configure(highlightcolor="black")
        entry.configure(insertbackground="black")
        entry.configure(selectbackground="#c4c4c4")
        entry.configure(selectforeground="black")

        nextBtn = Button(command=onGetNextBtn)
        nextBtn.place(relx=0.49, rely=0.89, height=28, width=59)
        nextBtn.configure(activebackground="#d9d9d9")
        nextBtn.configure(activeforeground="#000000")
        nextBtn.configure(background="#d9d9d9")
        nextBtn.configure(disabledforeground="#a3a3a3")
        nextBtn.configure(foreground="#000000")
        nextBtn.configure(highlightbackground="#d9d9d9")
        nextBtn.configure(highlightcolor="black")
        nextBtn.configure(pady="0")
        nextBtn.configure(text="下一条")

        openUrl = Button(command=onOpenUrl)
        openUrl.place(relx=0.66, rely=0.89, height=28, width=59)
        openUrl.configure(activebackground="#d9d9d9")
        openUrl.configure(activeforeground="#000000")
        openUrl.configure(background="#d9d9d9")
        openUrl.configure(disabledforeground="#a3a3a3")
        openUrl.configure(foreground="#000000")
        openUrl.configure(highlightbackground="#d9d9d9")
        openUrl.configure(highlightcolor="black")
        openUrl.configure(pady="0")
        openUrl.configure(text='打开链接')

        copyBtn = Button(command=onCopyContent)
        copyBtn.place(relx=0.82, rely=0.89, height=28, width=59)
        copyBtn.configure(activebackground="#d9d9d9")
        copyBtn.configure(activeforeground="#000000")
        copyBtn.configure(background="#d9d9d9")
        copyBtn.configure(disabledforeground="#a3a3a3")
        copyBtn.configure(foreground="#000000")
        copyBtn.configure(highlightbackground="#d9d9d9")
        copyBtn.configure(highlightcolor="black")
        copyBtn.configure(pady="0")
        copyBtn.configure(text='复制内容')

        firmBtn = Button(comman=onConfirm)
        firmBtn.place(relx=0.24, rely=0.89, height=28, width=59)
        firmBtn.configure(activebackground="#d9d9d9")
        firmBtn.configure(activeforeground="#000000")
        firmBtn.configure(background="#d9d9d9")
        firmBtn.configure(disabledforeground="#a3a3a3")
        firmBtn.configure(foreground="#000000")
        firmBtn.configure(highlightbackground="#d9d9d9")
        firmBtn.configure(highlightcolor="black")
        firmBtn.configure(pady="0")
        firmBtn.configure(text='确认')
        
        Label1 = Label()
        Label1.place(relx=0.01, rely=0.01, height=103, width=197)
        Label1.configure(activebackground="#f9f9f9")
        Label1.configure(activeforeground="black")
        Label1.configure(background="#d9d9d9")
        Label1.configure(disabledforeground="#a3a3a3")
        Label1.configure(foreground="#000000")
        Label1.configure(highlightbackground="#d9d9d9")
        Label1.configure(highlightcolor="black")
        Label1.configure(image=self.photo)
        Label1.configure(relief=RIDGE)
        Label1.configure(text='Label')
        
        labelZan = Label()
        labelZan.place(relx=0.4, rely=0.16, height=43, width=170)
        labelZan.configure(activebackground="#f9f9f9")
        labelZan.configure(activeforeground="black")
        labelZan.configure(background="#d9d9d9")
        labelZan.configure(disabledforeground="#a3a3a3")
        labelZan.configure(font=font9)
        labelZan.configure(foreground="#000000")
        labelZan.configure(highlightbackground="#d9d9d9")
        labelZan.configure(highlightcolor="black")
        labelZan.configure(justify=RIGHT)
        labelZan.configure(text='当前对点赞数的限定:')
        
        labelZan_1 = Label()
        labelZan_1.place(relx=0.67, rely=0.16, height=43, width=77)
        labelZan_1.configure(activebackground="#f9f9f9")
        labelZan_1.configure(activeforeground="black")
        labelZan_1.configure(background="#d9d9d9")
        labelZan_1.configure(disabledforeground="#a3a3a3")
        labelZan_1.configure(font=font9)
        labelZan_1.configure(foreground="#000000")
        labelZan_1.configure(highlightbackground="#d9d9d9")
        labelZan_1.configure(highlightcolor="black")
        labelZan_1.configure(justify=RIGHT)
        labelZan_1.configure(text='0')

如果想要查看完整代码(包括第三方software PAGE+Tcl8.6+),请进入如下链接获取:

https://pan.baidu.com/s/1gl_Ln75UZhVvrk1q8LSMjw  (比较完整)

也可以在我的github上获取,但只有py档.

https://github.com/vitamincqb/Toolset

这是一个VB6的IDE插件(Addin),使用VB6的IDE直接设计Python的界面。 Python和VB都是能让人快乐的编程语言,我使用了Python之后,很多自己使用的工具都使用Python开发或改写了,因为最终实现的Python代码实在太短了(相比VB),有时候Python一行代码就可以实现VB一个函数的功能。 Python就是这种让人越用越开心的语言。 不过说实在,使用Python开发GUI界面还是麻烦了一些了,自带的标准库Tkinter使用起来非常简单,不过对于习惯了VB拖放控件完成界面设计的偶来说,还是不够人性化。TK也有一个工具叫GUI Builder,不过它使用Layout布局,不够直观,而且用起来很不爽。。 至于PyQt/wxPythonGUI库,尽管有可视化设计工具,但总感觉做一般的轻量级应用是杀鸡用牛刀, 而且不够环保,不够低碳,要带一个很大的库,需要目标机器上夜同样安装了PyQt/wxPython,做不了绿色软件。 所以最终的结果是我更喜欢Tkinter,用起来很简单,绿色环保,真正的跨平台,一个py文件到处运行(担心泄密就编译成pyc)。 很多人都认为TK的界面不够美观,不过我经过多次实验后发现导入Python自带的标准TTK主题库,界面非常Native,不输PyQt/wxPython。 此Addin默认启用TTK支持,也可选择关闭。 总而言之,轻量级GUI,TK+TTK足够。 使用此Addin,你可以不用写一句代码就可以生成一个完整可运行的PythonGUI界面,支持2.X和3.X。 安装方法:将压缩包解压到你希望的目录,然后执行Setup.exe完成注册插件过程,打开VB6就可以用了。 在VB窗体上设计完成界面后(你可以大胆的设置各控件的属性,Addin尽量将其翻译为tkinter的控件属性),点工具栏上的VisualTkinter(图标为一片羽毛),再点'生成代码'按钮,即可生成可运行的Python代码,可以拷贝至剪贴板或保存至文件。 一般情况下你可以不用再改变tkinter的控件属性,但是如果你熟悉tkinter,需要更多的控制,可以一一核对各属性,并且修改,再生成代码。 当然除了用来设计界面外,此ADDIN内置的各控件属性列表可以做为编程参考,比较完整,除了极少数我认为大多数人都不用的属性外,属性定义基本上是我从官方的tkinter文档直接翻译的。 如果还没有VB6,网上找一个VB6精简即可,不到20M,小巧玲珑。 代码已经在Github上托管,更新的本可以在这上面找到,需求也可以在上面提: https://github.com/cdhigh/Visual-Tkinter-for-Python
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值