wx.SampleWizard.RadioBoxPage Class Reference

List of all members.

Public Member Functions

 RadioBoxPage (Wizard parent)


Detailed Description

Definition at line 152 of file Wizard.cs.


Constructor & Destructor Documentation

wx.SampleWizard.RadioBoxPage.RadioBoxPage ( Wizard  parent  ) 

Definition at line 160 of file Wizard.cs.

00161             : base(parent)
00162         {
00163             radio = new RadioBox(this, -1, "Allow to proceed:", new Point(5, 5),
00164                                     wxDefaultSize, Enum.GetNames(typeof(Choices)),
00165                                     1, 0);
00166             radio.Selection = (int)Choices.Both;
00167 
00168             this.EVT_WIZARD_CANCEL(-1, new EventListener(this.OnWizardCancel));
00169             this.EVT_WIZARD_PAGE_CHANGING(-1, new EventListener(this.OnWizardPageChanging));
00170         }


Manual of the wx.NET   (c) 2003-2010 the wx.NET project