コード例 #1
0
ファイル: MainForm.cs プロジェクト: budulai/iasiminChat
        //TODO need implementation
        private void addFriendToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //form nou + comanda executa din form nou spre formul mainForm
            AddFriend formFriend = new AddFriend();
            formFriend.Show();

            //_chatClient.SendFriendRequest("vanea1234");
        }
コード例 #2
0
 private void BtnAddFriend_Click(object sender, EventArgs e)
 {   // 친구추가 버튼
     this.addFnd = new AddFriend(main, this);
     this.addFnd.Show();
 }