python使用Tkinter做Gui如何显示用forget隐藏的控件
创建控件
bt=tkinter.Button(root,text='button')
bt.place(x=5,y=5)
bt.place_forget() #隐藏控件
如何使隐藏的控件再次显示出来
再次bt.place(),不行么?
再次bt.place() 还有传入x=5,y=5 不然不会显示
再显示就再做一次:
bt=tkinter.Button(root,text='button')
bt.place(x=5,y=5)
bt.place()
尽量不要用PLACE,用PACK或GRID
还有其他的方法吗
相关问答:
我用了def CreateMyDialog(self):
dlg = MyDialog(None, -1, ''.decode('utf8'), (300,300), (300,200), wx.DEFAULT_DIALOG_STYLE | wx.DIALOG_NO_PARENT )
&nbs ......
如题,
《python源码剖析》中第32页,
有个检查加法结果是否溢出的代码,
大致如下:
C/C++ code:
long a, b, x;
x = a + b;
//检查结果是否溢出
if((x^a)>=0 || (x^b)>=0)
return OK; // ......
请问下,我的是python2.5安装了PIL模块,然后编写程序打开本机上的一个图片时,为什么老出现错误呢,老是找不到图片,错误提示如下:File "C:\Python25\Lib\site-packages\PIL\Image.py", line 1888, in o ......
像 C 的 scanf() 那样
比如读入 1 2 3 a b c
每次读入一个
下面这个应该是你想要的吧:
Python code:
>>> k = raw_input()
0 0123 ds dsl sd
>>> k
'0 0123 ds dsl sd'
>>> ......
#include <Python.h>
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
vector <string> ......