示例#1
0
文件: Main.cs 项目: totkov/TT-Tiamat
 private void Menu_Balance_Open_Click(object sender, EventArgs e)
 {
     Balance note = new Balance();
     note.MdiParent = this;
     note.Show();
     note.Load();
 }
示例#2
0
文件: Main.cs 项目: totkov/TT-Tiamat
 private void Menu_Balance_New_Click(object sender, EventArgs e)
 {
     Balance balance = new Balance();
     balance.MdiParent = this;
     balance.Show();
     balance.New();
 }