Ejemplo n.º 1
0
        private void открытьПапкуToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog fb = new FolderBrowserDialog();
            if (fb.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                //MessageBox.Show(fb.SelectedPath);
                foreach (string file in Directory.GetFiles(fb.SelectedPath, "*.pld"))
                {

                    m_TrendsFusion = new TrendsFusion(file);
                    if (!new FileInfo(m_TrendsFusion.GetFileNameNew()).Exists)
                    {
                        buttonConvert_Click(null, null);
                        button1_Click(null, null);
                    }
                }
            }
        }
Ejemplo n.º 2
0
 private void открытьФайлToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     OpenFileDialog openDialog = new OpenFileDialog();
     if (openDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         m_TrendsFusion = new Converter.Trends.TrendsFusion(openDialog.FileName);
         listBox1.Items.Add(DateTime.Now.ToString() + ": Файл загружен. Кол-во плавок:" + m_TrendsFusion.Fusions.Count);
         buttonConvert_Click(null, null);
         button1_Click(null, null);
         открытьФайлToolStripMenuItem1_Click(null, null);
         //
     }
 }
Ejemplo n.º 3
0
 private void SaveToNewFile(TrendsFusion trendsFusion)
 {
     trendsFusion.Save();
 }