public PwClientSetting(Client_Setting parentForm)
 {
     InitializeComponent();
     this.m_client        = parentForm.SetPacket();
     this.m_networkstream = m_client.GetStream();
     this.team_name       = parentForm.loginID();
 }
Exemple #2
0
        private void btn_set_Click(object sender, EventArgs e)
        {
            Client_Setting mChild = new Client_Setting(this);

            if (mChild.ShowDialog() == DialogResult.OK)
            {
                MessageBox.Show("Completed Setting!", "Success",
                                MessageBoxButtons.OK, MessageBoxIcon.None); //성공 메시지 띄우기
            }
        }