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; }
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; }
private void tsmiAddfriend_Click(object sender, EventArgs e) { Frm_addFriend f = new Frm_addFriend(this); f.Show(); }