Пример #1
0
 public Frm_addFriendRequest(Frm_addFriend f)
 {
     InitializeComponent();
     this.parent         = f;
     this.hostID         = f.hostID;
     this.friendID       = f.friendID;
     this.friendNickName = f.friendNickName;
     this.db             = f.db;
 }
Пример #2
0
 public Frm_info(Frm_addFriend f, int id, bool isEnable)
 {
     InitializeComponent();
     this.parent_addFriend = f;
     this.isEnable         = isEnable;
     this.ilFace           = f.ilFace;
     this.id = id;
     this.db = f.db;
 }
Пример #3
0
        private void tsmiAddfriend_Click(object sender, EventArgs e)
        {
            Frm_addFriend f = new Frm_addFriend(this);

            f.Show();
        }