■ TextEdit 클래스를 사용하는 방법을 보여준다.
▶ CustomTextEdit.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
using System.Windows; using DevExpress.Xpf.Editors; namespace TestProject { /// <summary> /// 커스텀 텍스트 에디터 /// </summary> public class CustomTextEdit : TextEdit { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region Field /// <summary> /// 디폴트 에디터 여부 속성 /// </summary> public static readonly DependencyProperty IsDefaultEditorProperty; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 디폴트 에디터 여부 - IsDefaultEditor /// <summary> /// 디폴트 에디터 여부 /// </summary> public bool IsDefaultEditor { get { return (bool)GetValue(IsDefaultEditorProperty); } set { SetValue(IsDefaultEditorProperty, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Static #region 생성자 - CustomTextEdit() /// <summary> /// 생성자 /// </summary> static CustomTextEdit() { IsDefaultEditorProperty = DependencyProperty.Register("IsDefaultEditor", typeof(bool), typeof(CustomTextEdit)); CustomTextEditSettings.RegisterCustomEdit(); } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CustomTextEdit() /// <summary> /// 생성자 /// </summary> public CustomTextEdit() { } #endregion } } |
▶ CustomTextEditSettings.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
using System.Windows; using DevExpress.Xpf.Editors; using DevExpress.Xpf.Editors.Helpers; using DevExpress.Xpf.Editors.Settings; namespace TestProject { /// <summary> /// 커스텀 텍스트 에디터 설정 /// </summary> public class CustomTextEditSettings : TextEditSettings { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region Field /// <summary> /// 디폴트 에디터 여부 속성 /// </summary> public static readonly DependencyProperty IsDefaultEditorProperty; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 디폴트 에디터 여부 - IsDefaultEditor /// <summary> /// 디폴트 에디터 여부 /// </summary> public bool IsDefaultEditor { get { return (bool)GetValue(IsDefaultEditorProperty); } set { SetValue(IsDefaultEditorProperty, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Static #region 생성자 - CustomTextEditSettings() /// <summary> /// 생성자 /// </summary> static CustomTextEditSettings() { IsDefaultEditorProperty = DependencyProperty.Register("IsDefaultEditor", typeof(bool), typeof(CustomTextEditSettings)); RegisterCustomEdit(); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 커스텀 에디터 등록하기 - RegisterCustomEdit() /// <summary> /// 커스텀 에디터 등록하기 /// </summary> public static void RegisterCustomEdit() { EditorSettingsProvider.Default.RegisterUserEditor ( typeof(CustomTextEdit), typeof(CustomTextEditSettings), () => new CustomTextEdit(), () => new CustomTextEditSettings() ); } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Protected #region 에디터 코어 할당하기 - AssignToEditCore(pBaseEdit) /// <summary> /// 에디터 코어 할당하기 /// </summary> /// <param name="pBaseEdit">IBaseEdit 객체</param> protected override void AssignToEditCore(IBaseEdit pBaseEdit) { base.AssignToEditCore(pBaseEdit); CustomTextEdit customTextEdit = pBaseEdit as CustomTextEdit; if(customTextEdit == null) { return; } SetValueFromSettings(IsDefaultEditorProperty, () => customTextEdit.IsDefaultEditor = IsDefaultEditor); } #endregion } } |
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" xmlns:local="clr-namespace:TestProject" Width="800" Height="600" Title="TextEdit 클래스 사용하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <dxg:GridControl x:Name="gridControl"> <dxg:GridControl.Columns> <dxg:GridColumn FieldName="ProductName"> <dxg:GridColumn.EditSettings> <local:CustomTextEditSettings IsDefaultEditor="True" /> </dxg:GridColumn.EditSettings> </dxg:GridColumn> </dxg:GridControl.Columns> <dxg:GridControl.View> <dxg:TableView x:Name="tableView" /> </dxg:GridControl.View> </dxg:GridControl> </Grid> </Window> |
▶ MainWindow.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.gridControl.ItemsSource = new NorthwindDataSetTableAdapters.ProductsTableAdapter().GetData(); } #endregion } } |