Exemplo n.º 1
0
        public MatrixControl()
        {
            CellHeight   = CellWidth = 18;
            matrixWidth  = 0;
            matrixHeight = 0;
            fontSize     = CellHeight / 3;
            penSize      = 1;
            font         = "Verdana";

            HoveredCell = new HoveredCell <TValue>();
        }
Exemplo n.º 2
0
 public HoveredCellEventArgs(HoveredCell <TValue> cell)
 {
     HoveredCell = cell;
 }