示例#1
0
文件: Form1.cs 项目: xbanxyz/UnlimiTG
        private void timer1_Tick(object sender, EventArgs e)
        {
            photo ph = new photo();

            ph.TOKEN = textBox1.Text;
            ph.CHAT  = textBox2.Text;
        }
示例#2
0
文件: Form1.cs 项目: xbanxyz/UnlimiTG
        private void Form1_Load(object sender, EventArgs e)
        {
            if (File.Exists("ultoken.txt"))
            {
                textBox1.Text = File.ReadAllText("ultoken.txt");
            }
            photo ph = new photo();

            timer1.Start();
        }
示例#3
0
文件: Form1.cs 项目: xbanxyz/UnlimiTG
        private void sendPhotoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            photo ph = new photo();

            ph.Show();
        }