Python Forum
[S0LVED] [Tkinter] Center dialog?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[S0LVED] [Tkinter] Center dialog?
#4
The dialog centers over the parent. If you don't specify a parent, the root window is used as the parent. When the dialog is created the parent is still in the upper left corner. It is not until the mainloop that the parent window is moved to the location specified in the geometry() call. You need to move the parent window before you create the dialog. See below.
import tkinter as tk
from tkinter import simpledialog
 
root = tk.Tk()
windowWidth = root.winfo_reqwidth()
windowHeight = root.winfo_reqheight()
positionRight = int(root.winfo_screenwidth()/2 - windowWidth/2)
positionDown = int(root.winfo_screenheight()/2 - windowHeight/2)
root.geometry("+{}+{}".format(positionRight, positionDown))  # Root does not move yet
root.overrideredirect(1)
root.withdraw()
root.update_idletasks()  # Run "mainloop" one time.  Changes root location.  Do before making dialog

answer = simpledialog.askstring("File", "Path to file?")
if answer is not None:
    print("File is ", answer)
 
root.destroy()
Reply


Messages In This Thread
[S0LVED] [Tkinter] Center dialog? - by Winfried - Mar-01-2022, 02:07 PM
RE: [Tkinter] Center dialog? - by Axel_Erfurt - Mar-01-2022, 02:35 PM
RE: [Tkinter] Center dialog? - by Winfried - Mar-01-2022, 02:41 PM
RE: [Tkinter] Center dialog? - by deanhystad - Mar-01-2022, 04:48 PM
RE: [Tkinter] Center dialog? - by Winfried - Mar-01-2022, 05:55 PM
RE: [Tkinter] Center dialog? - by deanhystad - Mar-01-2022, 06:00 PM
RE: [Tkinter] Center dialog? - by Winfried - Mar-01-2022, 06:39 PM
RE: [Tkinter] Center dialog? - by deanhystad - Mar-01-2022, 06:47 PM
RE: [S0LVED] [Tkinter] Center dialog? - by Winfried - Mar-01-2022, 07:17 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Hard disk structure like a file selection dialog malonn 2 872 Aug-09-2023, 09:14 PM
Last Post: malonn
  (OpenCV) Help to improve code for object detection and finding center of it saoko 0 1,272 May-14-2022, 05:34 PM
Last Post: saoko
  Program to move a dot towards a circle center plumberpy 10 4,443 Dec-03-2021, 12:20 PM
Last Post: BashBedlam
  how to view all installed software in a dialog Tyrel 6 2,277 Oct-09-2021, 08:11 PM
Last Post: Tyrel
  Set Text in Open Dialog Box giddyhead 0 1,737 May-21-2021, 06:31 PM
Last Post: giddyhead
  Subprocesses not opening File Select Dialog teut 2 2,517 Feb-22-2021, 08:07 PM
Last Post: teut
  Center align Kristenl2784 1 2,026 Aug-03-2020, 04:25 PM
Last Post: bowlofred
  Image : center and resizing vvv 1 12,169 May-14-2017, 03:41 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020