示例#1
0
 public MainForm()
 {
     this.InitializeComponent();
     this.ImportedSTB = new STB();
     this.ExportedSTB = new STB();
     this.ImportedSTL = new STL();
     this.ExportedSTL = new STL();
     this.ImportedMZSC = new ZSC();
     this.ImportedWZSC = new ZSC();
     this.ExportedMZSC = new ZSC();
     this.ExportedWZSC = new ZSC();
     this.ImportedCHR = new CHR();
     this.ExportedCHR = new CHR();
 }
示例#2
0
 private void buttonNew_Click(object sender, EventArgs e)
 {
     this.listBoxImported.Items.Clear();
     this.listBoxExported.Items.Clear();
     this.richTextBoxHistory.Text = "";
     this.ImportedSTB = new STB();
     this.ExportedSTB = new STB();
     this.ImportedSTL = new STL();
     this.ExportedSTL = new STL();
     this.ImportedMZSC = new ZSC();
     this.ImportedWZSC = new ZSC();
     this.ExportedMZSC = new ZSC();
     this.ExportedWZSC = new ZSC();
     this.ImportedCHR = new CHR();
     this.ExportedCHR = new CHR();
     this.textBoxName.Clear();
     this.textBoxDescription.Clear();
     this.tabControl.SelectedIndex = 0;
 }