protected void OnNewActivatedHandler(object sender, EventArgs e) { Synchronize(); var w1 = new FileChoosing(this, DoNothing); w1.Show(); }
protected void activated_handler(object sender, EventArgs e) { Synchronize(); var w = new FileChoosing(this, BuildGraph_); w.Show(); }
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"); } }