wpf-devexpress-dot-xpf-dot-editors-dot-baseedit-7688056a.md
For internal use only.
Namespace : DevExpress.Xpf.Editors
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
[Browsable(false)]
public EditMode EditMode { get; set; }
<Browsable(False)>
Public Property EditMode As EditMode
| Type |
|---|
| EditMode |
Available values:
| Name | Description |
|---|---|
| Standalone |
For internal use only.
| | InplaceInactive |
For internal use only.
| | InplaceActive |
For internal use only.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the EditMode 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.
reporting-wpf-print-listview-data/CS/Window1.xaml#L15
<Setter Property="IsPrintingMode" Value="true" />
<Setter Property="EditMode" Value="InplaceInactive" />
<Setter Property="HorizontalContentAlignment" Value="Center"></Setter>
Source="{Binding ImageSource, RelativeSource={RelativeSource TemplatedParent}}"/>
<dxe:TextEdit Name="text" VerticalAlignment="Center" EditMode="InplaceInactive"
Text="{Binding Path=DisplayText, Mode=OneWay}"
DisplayFormatString="c2"
EditMode="InplaceInactive"
EditValue="{Binding Value, Mode=OneWay}"
if(edit != null) {
edit.EditMode = EditMode.InplaceInactive;
}
If edit IsNot Nothing Then
edit.EditMode = EditMode.InplaceInactive
End If
See Also