示例#1
0
        private void pushListPicBox_Click(object sender, EventArgs e)
        {
            SendForm sendForm = new SendForm();

            sendForm.Location = new Point(this.Location.X + 150, this.Location.Y + 120);
            sendForm.ShowDialog();
        }
示例#2
0
 private void sendPicBox_Click(object sender, EventArgs e)
 {
     SendForm sendForm = new SendForm();
     sendForm.ShowDialog();
 }
示例#3
0
        private void sendPicBox_Click(object sender, EventArgs e)
        {
            SendForm sendForm = new SendForm();

            sendForm.ShowDialog();
        }
示例#4
0
 private void pushListPicBox_Click(object sender, EventArgs e)
 {
     SendForm sendForm = new SendForm();
     sendForm.Location = new Point(this.Location.X + 150, this.Location.Y + 120);
     sendForm.ShowDialog();
 }