private void polarButton_Click(object sender, EventArgs e) { if (polarForm == null || polarForm.IsDisposed) { polarForm = new PolarForm(ic); } polarForm.Show(); polarForm.RefreshIcons(); }
private void Refresh(string folderPath = "") { wp.Stop(); this.Text = appName + " " + folderPath; flowChartPanel.Controls.Clear(); if (ic != null) { ic.Dispose(); ic = null; } ic = new ItemCombiner(this); ItemSet.SetCombiner(ic); if (polarForm != null) { polarForm.Dispose(); } polarForm = new PolarForm(ic); }
private void Refresh(string folderPath = "") { wp.Stop(); this.Text = appName + " " + folderPath; flowChartPanel.Controls.Clear(); if (ic != null) { ic.Dispose(); ic = null; } ic = new ItemCombiner(this); ItemSet.SetCombiner(ic); if (polarForm != null) polarForm.Dispose(); polarForm = new PolarForm(ic); }
private void polarButton_Click(object sender, EventArgs e) { if (polarForm == null||polarForm.IsDisposed) polarForm = new PolarForm(ic); polarForm.Show(); polarForm.RefreshIcons(); }