0
我試過使用屏幕大小和窗口大小的方法,但因爲它們不給數字值我不能從彼此中減去它們。這裏是我的代碼:如何在任何電腦的右上角獲得tkinter窗口?
from tkinter import *
statistics = Tk()
screenwidth = statistics.winfo_screenwidth
windowwidth = statistics.winfo_width
distance = screenwidth - windowwidth
statistics.geometry(+distance+'0')
你至少可以在你的其他問題中提出修改建議(http://stackoverflow.com/questions/20684130/how-can-i-subtract-a-method-value-from-another-method -VALUE合蟒)。否則,人們會在這裏重複他們。 – iCodez