I would like to save and restore the size and position of the window between program launches. What is the most correct and compatible way in Gtk# to:
- Get current size and position of the particular window.
- Set the size and position of the window.
|
|
|
To get the location and dimensions of a window you can call Window.GetPosition() Window.GetSize() To set the position of a window you can call Window.SetPosition() and Window.Move() To set the size of a window you can call Window.Resize() |
|||
|
|