Skip to main content
A newer version of this page is available. .

How to: Customize Look And Feel of Specific Control(s)

  • 2 minutes to read

DevExpress controls are rendered using the global look-and-feel settings the static Default LookAndFeel object exposes. This allows you to apply the same paint scheme to all forms in your application.

You can use a control’s LookAndFeel property to override the default look-and-feel settings:

  1. Set the control’s LookAndFeel.UseDefaultLookAndFeel property to false to ignore the default settings.
  2. Customize the control’s LookAndFeel settings as required.

The following code applies the “Seven Classic” skin to a ButtonEdit control:


// Disable the default look-and-feel settings.
buttonEdit1.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
// Specify the skin.
buttonEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
buttonEdit1.Properties.LookAndFeel.SkinName = "Seven Classic";

The result is illustrated below.

CD_LookAndFeel_Example_ButtonEdit_Skin

Tip

The BaseEdit descendants expose the look-and-feel settings with the RepositoryItem.LookAndFeel property (it is available from Editor.Properties.LookAndFeel for standalone editors). Other controls allow you to access these settings with the Control.LookAndFeel property.

Customize Look-And-Feel for a Group of Controls

See this link for details on how to customize the look-and-feel settings for all controls in a form.

Do one of the following to manage controls’ look-and-feel settings:

The code below shows how to use the StyleController component to customize two editors’ look-and-feel settings.

CD_LookAndFeel_Example_StyleController_New

using DevExpress.XtraEditors;
// Create and customize the Style Controller.
StyleController styleController1 = new StyleController();
// Set the background color.
styleController1.Appearance.BackColor = Color.LightYellow;
// Customize the LookAndFeel settings.
styleController1.LookAndFeel.UseDefaultLookAndFeel = false;
styleController1.LookAndFeel.SkinName = "Office 2016 Colorful";
// Assign the StyleController to editors.
buttonEdit1.StyleController = styleController1;
lookUpEdit1.StyleController = styleController1;
See Also