如何设置位置第二种形式取决于第一种形式?

时间:2015-07-18 15:39:48

标签: c#

我的Form1和Form2以及项目中的按钮。当我点击按钮Form2将显示。在form1的中心设置Form2位置的命令是什么?

3 个答案:

答案 0 :(得分:1)

将表单StartPosition属性设置为CenterParent。这样它总会弹出中心。

答案 1 :(得分:0)

您可以在打开时手动设置位置:

    private void button1_Click(object sender, EventArgs e)
    {
        Form2 f2 = new Form2();
        f2.StartPosition = FormStartPosition.Manual;
        f2.Load += delegate(object s2, EventArgs e2)
        {
            f2.Location = new Point(this.Bounds.Location.X + this.Bounds.Width / 2 - f2.Width / 2,
                this.Bounds.Location.Y + this.Bounds.Height / 2 - f2.Height / 2);
        };
        f2.Show();
    }

此处的关键是将StartPosition设置为手动。

在我的系统上,将StartPosition设置为CenterParent并使用Show(this)不会以“所有者”为中心。也许在我的系统上有些东西被打破了...对我来说总是那样。

答案 2 :(得分:-2)

您需要使用第二种形式的实例。请参阅我的2表单项目的示例

表格1

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        Form2 form2;
        public Form1()
        {
            InitializeComponent();
            form2 = new Form2(this);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            form2.Show();
            string  results = form2.GetData();
        }
    }
}
​

表格2

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form2 : Form
    {
        Form1 form1;
        public Form2(Form1 nform1)
        {
            InitializeComponent();

            this.FormClosing +=  new FormClosingEventHandler(Form2_FormClosing);
            form1 = nform1;
            form1.Hide();
        }
        private void Form2_FormClosing(object sender, FormClosingEventArgs e)
        {
            //stops form from closing
            e.Cancel = true;
            this.Hide();
        }
        public string GetData()
        {
            return "The quick brown fox jumped over the lazy dog";
        }

    }
}
​