dahall / AeroWizard

Library for easy creation of custom and Aero Wizards. Aero Wizard strictly follows Microsoft guidelines and uses Visual Styles to get visual theming.
MIT License
112 stars 32 forks source link

Expose CommandArea through property #17

Closed dahall closed 6 years ago

dahall commented 6 years ago

It would be really great if you could make a release with a public property ThemedTableLayoutPanel CommandArea { get { return this.commandArea; } }

This way it would be easy to add more buttons to the command area, cuz now at classic win7 theme or windows xp classic theme added buttons are not at the same height as cancel or next buttons. Due to the fact that commandArea is docked at bottom and Cancel, as well as Next buttons have bottom anchor and my added buttons do not have this anchor to commandArea.

Originally posted: 2013-01-25T13:39:37

dahall commented 6 years ago

This could be done with Header as well (giving full control to developers of WizardControl in designer view).

Originally posted: 2013-01-29T02:18:27

dahall commented 6 years ago

As of version 2.0.6, WizardControl has an AddCommandControl method that allows for controls to be added next to the buttons in the Command Area.

Originally posted: 2014-12-12T14:28:25