如何在自己的软件中加入一些广告呢
类似论坛里面的各种广告,这种可以移到python里面在软件中划出一块位置用来展示广告位 可以 你自己在你的软件界面里划出来一片空间,在那里头放就行
qiuyouzhi 发表于 2021-10-23 15:16
你自己在你的软件界面里划出来一片空间,
在那里头放就行
我也知道,问题是怎么做? suchocolate 发表于 2021-10-23 13:47
可以
怎么弄呢? cdzjf 发表于 2021-10-25 22:16
怎么弄呢?
所以你的代码呢? suchocolate 发表于 2021-10-25 22:23
所以你的代码呢?
root = tk.Tk()root.title("查询")
root.geometry("700x670+480+80")
tk.Label(root, text='输入地址', font=('', 12)).place(x=10, y=10, anchor='nw')
add = tk.Entry(root, show=None, width=68, font=('', 12))
add.place(x=90, y=10)
find = tk.Button(root, text="查询", width=10, height=1, command=th)
find.place(x=645, y=5)
style = ttk.Style()# 更改字体大小
style.configure("Treeview", font=(None, 12))
columns = ("Name","price","startime","stoptime")
treeview = ttk.Treeview(root, height=20, show="headings", columns=columns)# 表格
treeview.column("Name", width=250, anchor='sw')
treeview.column("price", width=200, anchor='center')
treeview.column("startime", width=150, anchor='center')
treeview.column("stoptime", width=150, anchor='center')
treeview.heading("Name", text="名称")
treeview.heading("price", text="金额")
treeview.heading("startime", text="开始时间")
treeview.heading("stoptime", text="结束时间")
treeview.place(x=5, y=40)
treeview.bind("<ButtonRelease-1>", treeviewClick)# 左键
treeview.bind("<ButtonRelease-3>", treeviewClick2)# 右键
root.mainloop()
就这种普通的gui嘛,怎么才能加广告,有什么广告联盟吗
cdzjf 发表于 2021-10-25 23:47
root = tk.Tk()root.title("查询")
root.geometry("700x670+480+80")
tk.Label(root, text ...
搞个Frame,往它里面放张图片 qiuyouzhi 发表于 2021-10-26 07:06
搞个Frame,往它里面放张图片
这个我也知道,关键是有没有什么广告联盟什么的可以写入程序内 cdzjf 发表于 2021-10-27 19:57
这个我也知道,关键是有没有什么广告联盟什么的可以写入程序内
额,那我不太清楚
你去百度下?
页:
[1]