コード例 #1
0
 private void polarButton_Click(object sender, EventArgs e)
 {
     if (polarForm == null || polarForm.IsDisposed)
     {
         polarForm = new PolarForm(ic);
     }
     polarForm.Show();
     polarForm.RefreshIcons();
 }
コード例 #2
0
        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);
        }
コード例 #3
0
ファイル: Form1.cs プロジェクト: tmokmss/LLSynth
        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);
        }
コード例 #4
0
ファイル: Form1.cs プロジェクト: tmokmss/LLSynth
 private void polarButton_Click(object sender, EventArgs e)
 {
     if (polarForm == null||polarForm.IsDisposed)
         polarForm = new PolarForm(ic);
     polarForm.Show();
     polarForm.RefreshIcons();
 }