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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:02:30+00:00 2026-05-15T21:02:30+00:00

Can a wx.PyControl contain a wx.Sizer ? Note that what I am ultimately trying

  • 0

Can a wx.PyControl contain a wx.Sizer?

Note that what I am ultimately trying to do here (spinner with float values) is already answered in another question. I am particularly interested in layouting widgets within a wx.PyControl, a skill which might prove useful if I come across a need to make my own custom widgets. I already read through CreatingCustomControls, but it didn’t use sizers within the wx.PyControl subclass.

Using my code below, my CustomWidget just doesn’t look right. I’m not yet doing a DoGetBestSize because I think that applies to a wx.Sizer acting on a widget. I am actually having a wx.Sizer doing its thing inside a CustomWidget.

Here is my code (without the event bindings between sub-widgets):
EDIT: Here is my corrected class code, thanks to Steven Sproat:

import wx

class CustomWidget(wx.PyControl):
  def __init__(self, parent):
    wx.PyControl.__init__(self, parent=parent, style=wx.NO_BORDER) # Style added.
    text = wx.TextCtrl(parent=self)
    spin = wx.SpinButton(parent=self, style=wx.SP_VERTICAL)
    sizer = wx.GridBagSizer()
    self.layout(text, spin, sizer)
    self.OnInit(text, sizer)

  def OnInit(self, text, sizer):
    text.SetValue(u"0.000")

  def layout(self, text, spin, sizer):
    self.SetSizer(sizer)
    sizer.Add(text, pos=(0, 0), flag=wx.ALIGN_CENTER)
    sizer.Add(spin, pos=(0, 1), flag=wx.ALIGN_CENTER)
    self.Fit()
    self.Layout() # This is what I lacked. I needed to call .Layout()
    self.CenterOnParent()
  • 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-15T21:02:31+00:00Added an answer on May 15, 2026 at 9:02 pm

    Yes, it can. You just need to call Layout() to tell the sizer to recalculate/layout its children.

    import wx
    
    class Frame(wx.Frame):
      def __init__(self):
        wx.Frame.__init__(self, None)
        blah  = CustomWidget(self)
        self.Show(True)
    
    class CustomWidget(wx.PyControl):
      def __init__(self, parent):
        wx.PyControl.__init__(self, parent=parent)
        text = wx.TextCtrl(parent=self)
        spin = wx.SpinButton(parent=self, style=wx.SP_VERTICAL)
        sizer = wx.GridBagSizer()
        self.layout(text, spin, sizer)
        self.OnInit(text, sizer)
    
      def OnInit(self, text, sizer):
        text.SetValue(u"0.000")
    
      def layout(self, text, spin, sizer):
        self.SetSizer(sizer)
        sizer.Add(text, pos=(0, 0), flag=wx.ALIGN_CENTER)
        sizer.Add(spin, pos=(0, 1), flag=wx.ALIGN_CENTER)
        self.Fit()
        self.Layout()
        self.CenterOnParent()
    
    app = wx.App()
    f = Frame()
    app.MainLoop()
    

    By the way, it would be nice in the future if you could attach a runnable sample as above 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a custom set of classes that can be added to
Can we change the default action of the edit selected row button? Here is
Can anyone explain to me why this program: for(float i = -1; i <
Why when a control does contain value but it's set to .Enable=False that all
I have some data coming out of an DB that I can't readily change
I'm trying to use the example found in: example , and I can get
i want to make a component that they can use like this [following] they
When you're using WTL, you can freely copy controls that represent built-in objects: //
Is there a way that I can have a server control MyControl<T> so that
I understand that whenever you create a property for a user control, you can

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.