예제 #1
0
파일: 4.cs 프로젝트: yuw726/Lexer
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            toolStripStatusLabel2.Text = "Построение диаграммы";
            string[] cell_to_string = new string[100];
            for (int i = 0; i < dataGridView1.Rows.Count; i++)
            {
                for (int j = 0; j < dataGridView1.Rows[i].Cells.Count; j++)
                {
                    if (dataGridView1.Rows[i].Cells[j].Value == null)
                    {
                        continue;
                    }
                    cell_to_string[i] = cell_to_string[i] + dataGridView1.Rows[i].Cells[j].Value.ToString() + " ";
                }
            }
            File.WriteAllLines(programDirectory.FullName.ToString() + "//temp_datum.elf", cell_to_string);

            if (newType == null)
            {
                newType = new TypeForm();
                newType.ShowDialog();
            }
            else
            {
                newType.Close();
                newType.Dispose();
                newType = new TypeForm();
                newType.ShowDialog();
            }
        }
예제 #2
0
 private void выбратьТипДиаграммыToolStripMenuItem_Click(object sender, EventArgs e)
 {
     newType = new TypeForm();
     if (DialogResult.OK == newType.ShowDialog())
     {
         this.Close();
         this.Dispose();
     }
 }