예제 #1
0
        private void menuTable_Click(object sender, EventArgs e)
        {
            TableInfoList til = TableInfoList.Create();

            til.Show();
            til.Focus();
        }
        private void menuTable_Click(object sender, EventArgs e)
        {
            TableInfoList tiList = FormFactory.GreateTIL();

            tiList.Show();
            tiList.Focus();
        }
예제 #3
0
 public static TableInfoList Create()
 {
     if (til == null || til.IsDisposed)
     {
         til = new TableInfoList();
     }
     return(til);
 }
 public static TableInfoList GreateTIL()
 {
     if (tableInfoList == null || tableInfoList.IsDisposed)
     {
         tableInfoList = new TableInfoList();
     }
     return(tableInfoList);
 }
예제 #5
0
 public static TableInfoList CreateTableInfoList()
 {
     if (_tableInfoList == null || _tableInfoList.IsDisposed)
     {
         _tableInfoList = new TableInfoList();
     }
     return(_tableInfoList);
 }