Cousin Stanley wrote
>> You might try setting a given window geometry
>> to accomodate the long title
>>
>> win_w = 400
>> win_h = 300
>>
>> ofs_h = 40
>> ofs_v = 30
>>
>> window.geometry( "%dx%d+%d+%d" % ( win_w , win_h , ofs_h , ofs_v ) )
>>
>>
>> Maybe add a bit of extra
On Wednesday, June 26, 2019, at 7:44:15 AM UTC-4, Cecil Westerhof wrote:
> I need to write a desktop program. I choose to use tkinter. How can I
> make sure the window title is visible? For example when I have the
> following code:
> from tkinter import Button, filedialog, Label, messagebo
Cecil Westerhof writes:
> Wildman writes:
>
>> On Wed, 26 Jun 2019 13:25:15 +0200, Cecil Westerhof wrote:
>>
>>> I need to write a desktop program. I choose to use tkinter. How can I
>>> make sure the window title is visible? For example when I have the
>>> following code:
>>> from tkinter
On Wed, 26 Jun 2019 15:05:15 +0200, Cecil Westerhof wrote:
>> OK, then I will have to live with it.
I did find some references to a method where you first disable
the Tkinter title bar using overrideredirect(True). Then you
create a new title bar using a frame and canvas. You can then
set the f
On 2019-06-26, Cousin Stanley wrote:
> You might try setting a given window geometry
> to accomodate the long title
> [...]
> window.geometry( "%dx%d+%d+%d" % ( win_w , win_h , ofs_h , ofs_v ) )
> Maybe add a bit of extra space for users with different default
> font sizes
Cecil Westerhof wrote:
> I need to write a desktop program. I choose to use tkinter.
>
> How can I make sure the window title is visible? For example
> when I have the following code :
> from tkinter import Button, filedialog, Label, messagebox, Tk
>
>
> window = Tk()
> wind
Wildman writes:
> On Wed, 26 Jun 2019 13:25:15 +0200, Cecil Westerhof wrote:
>
>> I need to write a desktop program. I choose to use tkinter. How can I
>> make sure the window title is visible? For example when I have the
>> following code:
>> from tkinter import Button, filedialog, Labe
On Wed, 26 Jun 2019 13:25:15 +0200, Cecil Westerhof wrote:
> I need to write a desktop program. I choose to use tkinter. How can I
> make sure the window title is visible? For example when I have the
> following code:
> from tkinter import Button, filedialog, Label, messagebox, Tk
>
>
>
I need to write a desktop program. I choose to use tkinter. How can I
make sure the window title is visible? For example when I have the
following code:
from tkinter import Button, filedialog, Label, messagebox, Tk
window = Tk()
window.title('A long window title')
Button (win