namespace Client { public partial class LoginForm : Form { public LoginForm() { InitializeComponent(); } private void btnLogin_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(tbxId.Text) || string.IsNullOrEmpty(tbxNickname.Text)) { MessageBox.Show("Please input ID and Nickname."); return; } Singleton.Instance.Id = tbxId.Text; Singleton.Instance.Nickname = tbxNickname.Text; RoomListForm roomListForm = new RoomListForm(); roomListForm.ShowDialog(); } } }