Skip to main content

How to: Customize Look And Feel of All Controls within Application

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.

Project Settings Page

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