コード例 #1
0
ファイル: Form1.cs プロジェクト: ontckr/LibYourself
        private void editLibrary_Click(object sender, EventArgs e)
        {
            editLibrary form = new editLibrary(selectedTable, getTableAttributes(), this);

            form.Show();
        }
コード例 #2
0
ファイル: renameTable.cs プロジェクト: ontckr/LibYourself
 public renameTable(String currentTableName, editLibrary editLibrary)
 {
     InitializeComponent();
     this.currentTableName = currentTableName;
     this.editLibrary      = editLibrary;
 }