3 Star 0 Fork 0

lzq1357 / Modifying pictures

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
VariableFrame.py 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
lzq1357 提交于 2020-09-05 02:21 . UI美化
"""
右侧可变面板 基类
供 DrawFrame、FilterFrame、GeometryFrame、IconFrame继承
# ylyy #
"""
from tkinter import *
import UI
#
class VariableFrame(Frame):
canv = None
def __init__(self, canv, master=None):
self.canv = canv
Frame.__init__(self, master, relief=RAISED, borderwidth=2, bg=UI.bg, width=260, height=610)
def onSizeChanged(self, width, height):
pass
def show(self):
self.place(x=UI.rightFrmPosition["x"], y=UI.rightFrmPosition["y"])
def close(self):
self.place_forget()
#
Python
1
https://gitee.com/lzq1357/Modifying-pictures.git
git@gitee.com:lzq1357/Modifying-pictures.git
lzq1357
Modifying-pictures
Modifying pictures
master

搜索帮助