how to make that my icon appears in the right edge of my toolbar

hi in wxwidgets use tb.AddStretchableSpace(), to do that my buttons
declared after this method appear in the right. but in wxpython this
method don't exist how do the same in this case?

your_sizer.AddStretchSpacer(1)

···

2011/3/17 iozk_Live iozk117@gmail.com

hi in wxwidgets use tb.AddStretchableSpace(), to do that my buttons

declared after this method appear in the right. but in wxpython this

method don’t exist how do the same in this case?

To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com

or visit http://groups.google.com/group/wxPython-users?hl=en

in a toolbar?

···

On 17 mar, 05:30, Christian Démolis <christiandemo...@gmail.com> wrote:

your_sizer.AddStretchSpacer(1)

Hi,

···

On Thu, Mar 17, 2011 at 9:26 AM, iozk_Live <iozk117@gmail.com> wrote:

On 17 mar, 05:30, Christian Démolis <christiandemo...@gmail.com> > wrote:

your_sizer.AddStretchSpacer(1)

in a toolbar?

No, that wont work that is a method for sizers not a ToolBar.

The wxToolBar does not have the 'AddStretchableSpace' method in 2.8.
This was a new method added in 2.9. So it is available to you in the
2.9.1 dev build.

Cody