Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6653783
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:18:42+00:00 2026-05-26T01:18:42+00:00

root = Tk() descriptionFrame = Frame(root) definitionFrame = LabelFrame(descriptionFrame, text=Definition) definitionScroll = Scrollbar(definitionFrame) definitionCanvas

  • 0
root = Tk()

descriptionFrame = Frame(root)

definitionFrame = LabelFrame(descriptionFrame, text="Definition")
definitionScroll = Scrollbar(definitionFrame)
definitionCanvas = Canvas(definitionFrame, width=30, height=4, yscrollcommand=definitionScroll.set)
definitionScroll.config(command=definitionCanvas.yview)
definitionLabel = Label(definitionCanvas, text="n/a")

descriptionFrame.pack()
definitionFrame.pack()
definitionScroll.pack(side=RIGHT, fill=Y)
definitionCanvas.pack(side=LEFT, fill=BOTH, expand=True)
definitionLabel.pack(fill=BOTH, expand=True)

root.mainloop()

I have this code. The Canvas is set to have a width of 30 and height of 4, but when I run this, it ignores the width and height of the Canvas and the resulting window is sized around the Label instead. I’ve tried using pack_propagate(False) on every single Frame in the code, but it doesn’t affect anything for the definitionFrame, but when I use it on descriptionFrame it results in an empty window. How would I create a GUI where all the frames and the window are sized to the Canvas size of width 30 and height 4?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:18:43+00:00Added an answer on May 26, 2026 at 1:18 am

    only Listbox, Text, Canvas, and Entry are scrollable by default; Canvas could work, but is a bit overkill IMO, so here’s something that seems like what you want using Text

    #!/usr/bin/python
    from Tkinter import *
    root = Tk()
    
    descriptionFrame = Frame(root)
    
    definitionFrame = LabelFrame(descriptionFrame, text="Definition")
    definitionScroll = Scrollbar(definitionFrame)
    definitionText = Text(definitionFrame, width=30, height=4, yscrollcommand=definitionScroll.set)
    definitionScroll.config(command=definitionText.yview)
    
    definitionText.delete("1.0", END)   # an example of how to delete all current text
    definitionText.insert("1.0", "n/a") # an example of how to add new text to the text area
    
    descriptionFrame.pack(fill=BOTH, expand=True)
    definitionFrame.pack(fill=BOTH, expand=True)
    definitionScroll.pack(side=RIGHT, fill=Y)
    definitionText.pack(side=LEFT, fill=BOTH, expand=True)
    
    root.mainloop()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

root = Tk() w=350 h=200 # get screen width and height ws = root.winfo_screenwidth()
When i set map.root :controller => welcome, I get the standard rails page, rather
header: Root, sortable: true, renderer: cat_id1, dataIndex: 'parent_id', width: 90, editor: new Ext.form.ComboBox({ typeAhead:
Root view is a UIImage View, it has subviews, those have subviews. My root
root@everton-laptop:/opt/tinyos-1.x/apps/Blink# make pc compiling Blink to a pc binary ncc -o build/pc/main.exe -g -O0
[root@234571-app2 git]# ./test.py File ./test.py, line 4 with open(/home/git/post-receive-email.log,'a') as log_file: ^ SyntaxError: invalid
map.root :controller => main, :action => index is not redirecting the main controller to
The root of my question is that the C# compiler is too smart. It
My root problem is that when using calls Dispose on a StreamWriter , it
For example: root.Nodes.Add(new TNode() { Foo1 = bar1, Foo2 = bar2, Foo3 = bar3

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.