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(); }
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); }
public static TableInfoList CreateTableInfoList() { if (_tableInfoList == null || _tableInfoList.IsDisposed) { _tableInfoList = new TableInfoList(); } return(_tableInfoList); }