Exemple #1
0
        public GridTableView(GridControl grid)
        {
            this.grid                        = grid;
            this.ShowGroupPanel              = false;
            this.ShowAutoFilterRow           = true;
            this.ShowCriteriaInAutoFilterRow = true;
            // this.AutoWidth = true;
            this.IsEnabled                  = true;
            this.AllowEditing               = true;
            this.UseIndicatorForSelection   = true;
            this.ShowCheckBoxSelectorColumn = true;
            this.AllowFixedColumnMenu       = true;

            //this.ShowCheckBoxSelectorInGroupRow = true;
            this.NavigationStyle = GridViewNavigationStyle.Cell;
            //this.OptionsClipboard.
            this.BestFitColumns();

            this.Menu = new GridContextMenu(this);
        }