Beispiel #1
0
    protected void OnNewActivatedHandler(object sender, EventArgs e)
    {
        Synchronize();
        var w1 = new FileChoosing(this, DoNothing);

        w1.Show();
    }
Beispiel #2
0
    protected void activated_handler(object sender, EventArgs e)
    {
        Synchronize();
        var w = new FileChoosing(this, BuildGraph_);

        w.Show();
    }
Beispiel #3
0
 protected void OnFindPathActionActivatedHandler(object sender, EventArgs e)
 {
     if (Path_ != null)
     {
         //Synchronize();
         var w = new FindPathWindow(this);
         w.Show();
     }
     else
     {
         var w = new FileNotFoundDialog(this, () => {
             var w1 = new FileChoosing(this, BuildGraph_);
             w1.Show();
         }, "Please select a folder where info is contained");
     }
 }