예제 #1
0
 public override void Insert()
 {
     KeyWordEditView _sta = new KeyWordEditView(this);
     _sta.Owner = Global._MainWindow;
     _sta.ShowDialog();
 }
예제 #2
0
 public override void Update(object par)
 {
     if (par is KeyWordOR)
     {
         KeyWordEditView _sta = new KeyWordEditView(this, par as KeyWordOR);
         _sta.Owner = Global._MainWindow;
         _sta.ShowDialog();
     }
 }