windowsforms-devexpress-dot-xtraeditors-dot-container-dot-editorcontainer-e540b809.md
Namespace : DevExpress.XtraEditors.Container
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Appearance")]
public virtual UserLookAndFeel LookAndFeel { get; }
<DXCategory("Appearance")>
Public Overridable ReadOnly Property LookAndFeel As UserLookAndFeel
| Type |
|---|
| UserLookAndFeel |
The following code snippets (auto-collected from DevExpress Examples) contain references to the LookAndFeel property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
if (e.Button == MouseButtons.Right && hitInfo.HitTest == GridHitTest.FilterPanel) {
((IDXDropDownControl)menu).Show(new SkinMenuManager(view.GridControl.LookAndFeel), view.GridControl, e.Location);
}
{
Skin currentSkin = CommonSkins.GetSkin(gridView.GridControl.LookAndFeel);
return currentSkin.TranslateColor(SystemColors.Control);
If e.Button = MouseButtons.Right AndAlso hitInfo.HitTest = GridHitTest.FilterPanel Then
CType(menu, IDXDropDownControl).Show(New SkinMenuManager(view.GridControl.LookAndFeel), view.GridControl, e.Location)
End If
Private Function GetColor() As Color
Dim currentSkin As Skin = CommonSkins.GetSkin(gridView.GridControl.LookAndFeel)
Return currentSkin.TranslateColor(SystemColors.Control)
See Also