예제 #1
0
파일: frmChat.cs 프로젝트: piguin/wintumblr
 private void btnAcc_Click(object sender, EventArgs e)
 {
     frmAccounts frm = new frmAccounts();
     frm.ShowDialog(this);
     LoadAccounts();
 }
예제 #2
0
파일: Program.cs 프로젝트: piguin/wintumblr
 private void mnutAccounts_Click(object sender, EventArgs e)
 {
     frmAccounts frm = new frmAccounts();
     SwitchMenuItems(false);
     frm.StartPosition = FormStartPosition.CenterScreen;
     frm.ShowInTaskbar = true;
     frm.ShowDialog();
     SwitchMenuItems(true);
 }