コード例 #1
0
 private void toolBox_ShowLibraryManagerDialog(object sender, EventArgs e)
 {
     LibraryManagementDialog dlg = new LibraryManagementDialog(project);
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: maitakov/Graphite
 private void toolSetController1_LibraryManagerSelected(object sender, EventArgs e)
 {
     // Show the LibraryManagerDialog when requested by the tool set controller
     using (LibraryManagementDialog dlg = new LibraryManagementDialog(project))
         dlg.ShowDialog(this);
 }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: LudovicT/NShape
 private void toolSetController1_LibraryManagerSelected(object sender, EventArgs e)
 {
     using (LibraryManagementDialog dlg = new LibraryManagementDialog(project))
         dlg.ShowDialog(this);
 }