C# |
public virtual SerializeableUserLookAndFeel LookAndFeel { get; }
|
VB |
Overridable Public ReadOnly Property LookAndFeel As SerializeableUserLookAndFeel
|
Property value
Type: SerializeableUserLookAndFeel
A UserLookAndFeel object whose properties specify the layout control's look and feel.
For more information on the look and feel technology, see the Look and Feel topic.

Example
The following code shows how to make a LayoutControl transparent, using the OptionsView.EnableTransparentBackColor property.
C# |
layoutControl1.BackColor = Color.Transparent;
layoutControl1.LookAndFeel.UseDefaultLookAndFeel = false;
layoutControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
layoutControl1.OptionsView.EnableTransparentBackColor = true;
layoutControl1.Root.AppearanceGroup.BackColor = System.Drawing.Color.Transparent;
layoutControl1.Root.AppearanceGroup.Options.UseBackColor = true;
layoutControl1.OptionsView.ShareLookAndFeelWithChildren = false;
|
VB |
LayoutControl1.BackColor = Color.Transparent
LayoutControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat
LayoutControl1.LookAndFeel.UseDefaultLookAndFeel = False
LayoutControl1.OptionsView.EnableTransparentBackColor = True
LayoutControl1.Root.AppearanceGroup.BackColor = System.Drawing.Color.Transparent
LayoutControl1.Root.AppearanceGroup.Options.UseBackColor = True
LayoutControl1.OptionsView.ShareLookAndFeelWithChildren = False
|