예제 #1
0
        private void LoadTree(C1FlexGrid fg)
        {
            int col_Ten_TrangThai_Index = fg.Cols["Ten_TrangThai"].Index;

            GroupBy("Ten_NguoiThucHien", col_Ten_TrangThai_Index, 0, "Người thực hiện:", fg);
            fg.Cols["Ten_NguoiThucHien"].Width = 0;
            fg.AllowMerging = AllowMergingEnum.Nodes;
            fg.Tree.Column  = col_Ten_TrangThai_Index;
            fg.Tree.Style   = TreeStyleFlags.SimpleLeaf;
            fg.AutoSizeCol(fg.Tree.Column);
            fg.Tree.Show(0);
        }