Beispiel #1
0
        //获取陌生人信息,支持缓存
        private void button9_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrWhiteSpace(this.textBox11.Text))
            {
                MessageBox.Show("目标qq不能为空");
                return;
            }

            string content = coolQApiForTest.GetStrangerInfo(Convert.ToInt64(this.textBox11.Text), (radioButton1.Checked ? true : false));

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