用法:
class tkinter.tix.Tk(screenName=None, baseName=None, className='Tix')
Tix 的顶级小部件,主要代表应用程序的主窗口。它有一个相关的 Tcl 解释器。
tkinter.tix
模块中的类是tkinter
中的类的子类。前者导入后者,因此要在 Tkinter 中使用tkinter.tix
,您只需导入一个模块即可。通常,您可以只导入tkinter.tix
,并将对tkinter.Tk
的顶级调用替换为tix.Tk
:from tkinter import tix from tkinter.constants import * root = tix.Tk()
相关用法
- Python tkinter.tix.tixCommand用法及代码示例
- Python tkinter.ttk.Style.map用法及代码示例
- Python tkinter.ttk.Style.theme_settings用法及代码示例
- Python tkinter.ttk.Style.layout用法及代码示例
- Python tkinter.ttk.Style.configure用法及代码示例
- Python tkinter.ttk.Style.lookup用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python torchaudio.transforms.Fade用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python Pandas tseries.offsets.CustomBusinessHour.onOffset用法及代码示例
- Python torch.special.gammaincc用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 tkinter.tix.Tk。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。