Public Member Functions | |
| RadioBoxPage (Wizard parent) | |
Definition at line 152 of file Wizard.cs.
| 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 }
(c) 2003-2010 the wx.NET project