How to: Customize Look And Feel of All Controls within Application
Option #1: Project Settings (recommended approach)
Right-click a project in Visual Studio’s Solution Explorer and select “DevExpress Project Settings”. This invokes the Project Settings Page that allows you to specify global settings and the skin.
Option #2: Default LookAndFeel
Place the DefaultLookAndFeel component onto the main form and modify the DefaultLookAndFeel.LookAndFeel object’s settings. Use the static UserLookAndFeel.Default property to access these settings in code.
The following code applies “The Bezier” skin as DevExpress controls’ default skin:
DevExpress.LookAndFeel.UserLookAndFeel.Default.SetSkinStyle("The Bezier");
See Also