wpf-devexpress-dot-xpf-dot-editors-dot-settings-5bb813ef.md
Contains settings specific to the SpinEdit editor.
Namespace : DevExpress.Xpf.Editors.Settings
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public class SpinEditSettings :
ButtonEditSettings
Public Class SpinEditSettings
Inherits ButtonEditSettings
DevExpress container controls (e.g. GridControl, TreeListControl, and so on) use DevExpress WPF Editors to edit data they display. Each editor has a helper class (a BaseEditSettings descendant) that is responsible for the editor’s functionality. When the same editor is used in multiple locations, a container control uses this helper class to paint its cells. The actual editors are only created when users start to edit, and are automatically deleted when editing is completed.
Refer to the Assign Editors to Cells topic for more information.
For detailed information on spin editors, see SpinEdit.
The following code snippets (auto-collected from DevExpress Examples) contain references to the SpinEditSettings class.
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.
wpf-data-grid-implement-custom-grouping/CS/CustomGrouping_CodeBehind/MainWindow.xaml#L17
<dxg:GridColumn.EditSettings>
<dxe:SpinEditSettings DisplayFormat="c2" />
</dxg:GridColumn.EditSettings>
wpf-data-grid-validate-cell-editors/CS/ValidateCell_CodeBehind/MainWindow.xaml#L21
<dxg:GridColumn.EditSettings>
<dxe:SpinEditSettings DisplayFormat="c2" />
</dxg:GridColumn.EditSettings>
wpf-data-grid-handle-row-double-clicks/CS/RowDoubleClick_CodeBehind/MainWindow.xaml#L18
<dxg:GridColumn.EditSettings>
<dxe:SpinEditSettings HorizontalContentAlignment="Left" />
</dxg:GridColumn.EditSettings>
Object DispatcherObject DependencyObject ContentElement FrameworkContentElement DXFrameworkContentElement BaseEditSettings TextEditSettings ButtonEditSettings SpinEditSettings
See Also