예제 #1
0
        //设置群匿名
        private void button15_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrWhiteSpace(this.textBox19.Text))
            {
                MessageBox.Show("目标群号不能为空");
                return;
            }

            int content = coolQApiForTest.SetGroupAnonymous(Convert.ToInt64(this.textBox19.Text), radioButton6.Checked ? true : false);

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