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 7186495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:38:36+00:00 2026-05-28T18:38:36+00:00

I am making a small program to draw segments in python using wxpython and

  • 0

I am making a small program to draw segments in python using wxpython and ogl library. I have created and added the canvas to a sizer, but am unable to freeze the size of the canvas.

sizer = wx.BoxSizer(wx.VERTICAL)
canvas_sizer = wx.BoxSizer(wx.HORIZONTAL)
text_sizer = wx.BoxSizer(wx.HORIZONTAL)
stat = wx.StaticText(panel,-1,'position')

canvas = ogl.ShapeCanvas(panel)
diagram = ogl.Diagram()
canvas.SetDiagram(diagram)
diagram.SetCanvas(canvas)

canvas_sizer.Add(canvas,1,wx.GROW)
text_sizer.Add(stat,1,wx.ALL,5)
sizer.Add(canvas_sizer,1,wx.GROW)
sizer.Add(text_sizer)

self.SetSizer(sizer)
sizer.Fit(self)

The above code is part of my actual code. Please suggest ways to make the canvas size fixed

  • 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-28T18:38:37+00:00Added an answer on May 28, 2026 at 6:38 pm

    You must set the proportion the slot must occupy to 0 and to give the contents a minimum size in case it is required:

    sizer = wx.BoxSizer(wx.VERTICAL)
    text_sizer = wx.BoxSizer(wx.HORIZONTAL)
    canvas_sizer = wx.BoxSizer(wx.HORIZONTAL)
    stat = wx.StaticText(self, -1, "position")
    
    # for testing I used a panel instead of your ogl object
    canvas = wx.Panel(self, -1)    
    canvas.SetMinSize((-1, 70))     # Needed here to give a min size to panel,
                                    # otherwise the panel would not be seen.
                                    # The sizer will occupy the minimal 
                                    # to hold its contents.
    
    canvas_sizer.Add(canvas, 1, wx.EXPAND, 0)
    sizer.Add(canvas_sizer, 0, wx.EXPAND, 0)   # <- note proportion 0 here
    text_sizer.Add(stat, 1, wx.EXPAND, 0)
    sizer.Add(text_sizer, 1, wx.EXPAND, 0)
    self.SetSizer(sizer)
    sizer.Fit(self)
    self.Layout()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a small Python program, which calls the webbrowser module to open a
I am making a small program using C++/CLI that use TcpListener , I know
Im making a small python script to upload files on the net. The script
I'm making a small web application in Seaside. I have a login component, and
I have written a small program , to understand how futures work in c++0x.
I'm currently making a small program to teach me some new Java, and I'm
I'm making a small program for math (no particular reason, just kind of wanted
How would I go about making a small program that keeps moving the mouse
I would like to have a statusbar, so I started by making a small
Making a small WCF test program which is based on a Store that has

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.