Exemplo n.º 1
0
 public DgvLog()
 {
     IdLog      = 2;
     LogName    = "DataGridView Log";
     logElement = DataGridSingleton.GetReference();
     logElement.Show();
 }
Exemplo n.º 2
0
        public static DataGridSingleton GetReference()
        {
            if (datagrid_singleton == null)
            {
                datagrid_singleton = new DataGridSingleton();
            }

            return(datagrid_singleton);
        }