python tkinter 设置窗口大小不可缩放

python tkinter 设置窗口大小不可缩放,第1张

设置Tkinter 窗口无法拖拽放大缩小

root = tkinter.Tk() # 创建顶级窗口
root.resizable(False, False) #横纵均不允许调整

定位源码

    def wm_resizable(self, width=None, height=None):
        """Instruct the window manager whether this width can be resized
        in WIDTH or HEIGHT. Both values are boolean values."""
        return self.tk.call('wm', 'resizable', self._w, width, height)

    resizable = wm_resizable

参数width 、height 均为bool 类型 ,width 横向调整开关,height 纵向调整开关

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/568762.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-09
下一篇 2022-04-09

发表评论

登录后才能评论

评论列表(0条)

保存