2 Star 2 Fork 2

John-逍遥/Promotion

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
John-逍遥 提交于 2019-02-02 15:09 . 加入推广渠道解析
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from tkinter import Menu, Button
from base.BaseMainWindow import BaseMainWindow
from sdautolayout.sdautolayout import sdautolayout
from ui.account.AccountWindow import AccountWindow
from ui.channel.ChannelWindow import ChannelWindow
from utils.BrowserUtils import BrowserUtils
class Main(BaseMainWindow):
def __init__(self):
super(Main, self).__init__(width=500,height=50,title='推广神器')
self.init_ui()
self.init_menu()
def init_ui(self):
self.button_start_chrome = Button(self,text='启动浏览器',command=self.startupChrome)
self.button_start_chrome.place(x=5,y=5)
sdautolayout.forWidget(self.button_start_chrome).widthIs(self.getWidth()-10).heightIs(self.getHeight()-10)
def init_menu(self):
# 在大窗口下定义一个菜单实例
menubar = Menu(self)
# 给菜单实例增加菜单项
table = {'推广渠道': self.channel, '账号': self.account, '推广内容': self.account, '关于': self.account}
map = dict([(v, k) for v, k in table.items()])
for key in map.keys():
menubar.add_command(label=key,command=map[key])
# 菜单实例应用到大窗口中
self['menu'] = menubar
def startupChrome(self):
BrowserUtils.instance().load("http://www.baidu.com")
def channel(self):
ChannelWindow(self)
def account(self):
AccountWindow(self)
main = Main()
main.show()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lujianfei/Promotion.git
git@gitee.com:lujianfei/Promotion.git
lujianfei
Promotion
Promotion
master

搜索帮助