Exemplo n.º 1
0
        //设置群管理员
        private void button14_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrWhiteSpace(this.textBox18.Text))
            {
                MessageBox.Show("目标群号不能为空");
                return;
            }

            if (string.IsNullOrWhiteSpace(this.textBox17.Text))
            {
                MessageBox.Show("目标QQ不能为空");
                return;
            }
            int content = coolQApiForTest.SetGroupAdmin(Convert.ToInt64(this.textBox18.Text), Convert.ToInt64(this.textBox17.Text), radioButton3.Checked ? true:false);

            textBox4.Text = "" + content;
            MessageBox.Show("执行完成");
        }