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(); }
public data_grid_style(grid_style s1, grid_style s2) { gs1 = s1; gs2 = s2; }
public data_grid_style(DataGridView vieu, grid_style s1, grid_style s2) : this(s1, s2) { Apply(vieu); }