子窗口private void btn_OK_Click(object sender, EventArgs e) { this.DialogResult = System.Windows.Forms.DialogResult.OK; } private void btn_Cancel_Click(object sender, EventArgs e) { this.Close(); }父窗口 Form4 f4 = new Form4(); //f4.Location = Point point = this.Location; point.X += 220; point.Y -=330; f4 Read More
posted @ 2012-05-16 11:46 咸鱼公子 Views(227) Comments(0) Diggs(0) Edit