Contributed by Vennis
on Aug 29, 2002 at 14:54 UTC
Q&A
> GUI Programming
Description: I want my Tk application to be maximized.
(That is not screensize resized, i found that already)
Has anyone succeeded on this ?
Answer: How can I maximize a Tk application? (Win32) contributed by eserte
Win32::API's ShowWindow provides access to the Win32 native API function which does this.
I might suggest the Win32Util module; it has a maximize function which conveniently tries to maximize in one of two ways: using ShowWindow if Win32::API is installed, or, as a fallback, resizing the window to the screen size.
| Answer: How can I maximize a Tk application? (Win32) contributed by kelan
I don't think it's possible through Tk. Being maximized or not isn't a property of the application, it's a property of the window, and windows are "owned" by the GUI (Windows), not by the application (Tk).
I think you'd have to find some way to send a maximization request to the GUI so that it will maximize the window for you. Something somewhere in the Win32 modules might have something you could use.
Update: My intuition was right, but eserte provided the concrete answer.
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|