expressappframework-devexpress-dot-expressapp-dot-win-dot-editors-dot-winpropertyeditor.md
Provides access to the control that represents the current Property Editor in a UI.
Namespace : DevExpress.ExpressApp.Win.Editors
Assembly : DevExpress.ExpressApp.Win.v25.2.dll
NuGet Packages : DevExpress.ExpressApp.Win, DevExpress.ExpressApp.Win.Design
public Control Control { get; }
Public ReadOnly Property Control As Control
| Type | Description |
|---|---|
| Control |
A Control object used to display the current Property Editor in a UI.
|
To see an example on how to use this property, refer to the following topic: Customize a Built-in Property Editor (WinForms).
The following code snippets (auto-collected from DevExpress Examples) contain references to the Control 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.
XAF-search-objects-using-complex-criterion/CS/Dennis.Search.Win/SearchObjectPropertyEditor.cs#L98
protected override object CreateControlCore() { return new SearchObjectControl(this); }
public new SearchObjectControl Control { get { return (SearchObjectControl)base.Control; } }
public override bool IsCaptionVisible { get { return false; } }
get {
return (CheckedListBoxControl)base.Control;
}
XAF-search-objects-using-complex-criterion/VB/Dennis.Search.Win/SearchObjectPropertyEditor.vb#L159
Get
Return CType(MyBase.Control, SearchObjectControl)
End Get
Get
Return CType(MyBase.Control, CheckedListBoxControl)
End Get
See Also