Esempio n. 1
0
        internal void BasicInit()
        {
            grid_style gs1 = new grid_style(SystemFonts.IconTitleFont, SystemColors.Window, SystemColors.MenuText, SystemColors.Window, SystemColors.MenuText);

            _gridStyle = new data_grid_style(this, gs1, gs1);
            _gridStyle.Apply();
        }
Esempio n. 2
0
 public data_grid_style(grid_style s1, grid_style s2)
 {
     gs1 = s1; gs2 = s2;
 }
Esempio n. 3
0
 public data_grid_style(DataGridView vieu, grid_style s1, grid_style s2) : this(s1, s2)
 {
     Apply(vieu);
 }