■ TokenEdit 클래스에서 커스텀 드롭 다운을 사용하는 방법을 보여준다.
▶ CustomGalleryControl.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 |
using System.ComponentModel; using DevExpress.XtraBars.Ribbon; namespace TestProject { /// <summary> /// 커스텀 갤러리 컨트롤 /// </summary> [ToolboxItem(true)] public class CustomGalleryControl : GalleryControl { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 포커스 허용 여부 - AllowFocus /// <summary> /// 포커스 허용 여부 /// </summary> protected override bool AllowFocus { get { return false; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CustomGalleryControl() /// <summary> /// 생성자 /// </summary> public CustomGalleryControl() { } #endregion } } |
▶ CustomTokenEditDropDownControl.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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
using System.Collections.Generic; using DevExpress.XtraBars.Ribbon; using DevExpress.XtraEditors; using DevExpress.XtraEditors.Popup; namespace TestProject { /// <summary> /// 커스텀 토큰 에디터 드롭 다운 컨트롤 /// </summary> public partial class CustomTokenEditDropDownControl : CustomTokenEditDropDownControlBase { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 토큰 리스트 /// </summary> private List<TokenEditToken> tokenList = new List<TokenEditToken>(); /// <summary> /// 클릭 항목 /// </summary> private GalleryItem itemClicked; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CustomTokenEditDropDownControl() /// <summary> /// 생성자 /// </summary> public CustomTokenEditDropDownControl() { InitializeComponent(); this.customGalleryControl.Gallery.ShowItemText = true; this.customGalleryControl.Gallery.ItemClick += GalleryControlGallery_ItemClick; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public //////////////////////////////////////////////////////////////////////////////// Function #region 데이터 소스 설정하기 - SetDataSource(dataSource) /// <summary> /// 데이터 소스 설정하기 /// </summary> /// <param name="dataSource">데이터 소스</param> public override void SetDataSource(object dataSource) { if(this.customGalleryControl.Gallery.Groups[0].Items.Count != 10) { CreateData(); } } #endregion #region 항목 수 구하기 - GetItemCount() /// <summary> /// 항목 수 구하기 /// </summary> /// <returns>항목 수</returns> public override int GetItemCount() { return this.tokenList.Count; } #endregion #region 폼 너비 계산하기 - CalcFormWidth() /// <summary> /// 폼 너비 계산하기 /// </summary> /// <returns>폼 너비</returns> public override int CalcFormWidth() { return base.CalcFormWidth(); } #endregion #region 폼 높이 계산하기 - CalcFormHeight(itemCount) /// <summary> /// 폼 높이 계산하기 /// </summary> /// <param name="itemCount">항목 수</param> /// <returns>폼 높이</returns> public override int CalcFormHeight(int itemCount) { return 120; } #endregion #region 결과 값 구하기 - GetResultValue() /// <summary> /// 결과 값 구하기 /// </summary> /// <returns>결과 값</returns> public override object GetResultValue() { int index = this.customGalleryControl.Gallery.Groups[0].Items.IndexOf(this.itemClicked); return this.tokenList[index]; } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 갤러리 컨트롤 갤러리 항목 클릭시 처리하기 - GalleryControlGallery_ItemClick(sender, e) /// <summary> /// 갤러리 컨트롤 갤러리 항목 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void GalleryControlGallery_ItemClick(object sender, GalleryItemClickEventArgs e) { this.itemClicked = e.Item; if((OwnerEdit as TokenEdit).EditValue != null && (OwnerEdit as TokenEdit).EditValue.ToString().Contains(e.Item.Caption)) { return; } this.OwnerEdit.ClosePopup(PopupCloseMode.Normal); } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 데이터 생성하기 - CreateData() /// <summary> /// 데이터 생성하기 /// </summary> /// <returns>토큰 열거 가능형</returns> private IEnumerable<TokenEditToken> CreateData() { for(int i = 0; i < 10; i++) { this.tokenList.Add(new TokenEditToken("토큰 " + i.ToString(), "토큰 " + i.ToString())); this.customGalleryControl.Gallery.Groups[0].Items.Add ( new GalleryItem ( this.imageCollection.Images[i], this.tokenList[i].Description, null ) ); } return this.tokenList; } #endregion } } |
▶ MainForm.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 |
using DevExpress.XtraEditors; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : XtraForm { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); CustomTokenEditDropDownControl customTokenEditDropDownControl = new CustomTokenEditDropDownControl(); this.tokenEdit.Properties.EditMode = TokenEditMode.Manual; this.tokenEdit.Properties.CustomDropDownControl = new CustomTokenEditDropDownControl(); } #endregion } } |