TreeList

Devexpress의 Winform 의 GridControl (GridView, BandedGridView) 및 TreeList 의 Indicator Header에 버튼을 추가 하는 코드 /*// 사용법// 이미지 및 ToolTipContainer 를 인스턴스의 속성으로 노출IndicatorHeaderButton indicatorHeaderButton = new IndicatorHeaderButton(this.gc_Input);indicatorHeaderButton.IndicatorButtonClick += (ss, ee) =>{ // 버튼 클릭};*/public sealed class IndicatorHeaderButton{ private static readonly string AddBu..
* treelist 설정 int footerCount = 4; int footerRowHeight = (treeList1.RowHeight * footerCount) + ((2 + 2) * footerCount); this.treeList1.KeyFieldName = "ID"; this.treeList1.ParentFieldName = "ParentID"; this.treeList1.OptionsView.ShowSummaryFooter = true; this.treeList1.FooterPanelHeight = footerRowHeight; this.treeList1.CustomDrawFooterCell += treeList1_CustomDrawFooterCell; this.treeList1.DataSo..
달빛에취하다
'TreeList' 태그의 글 목록