简体   繁体   中英

How to center MDI child Form?

I have this code, to add a new child:

  private void Menu1_Click(object sender, RoutedEventArgs e)
    {

        Point centerPoint = new Point((Container.ActualWidth  / 2) - (500/2), (Container.ActualHeight / 2) - (400 / 2));


        MdiChild newForm = new MdiChild();
        newForm.Title = "My Form";
        newForm.Content = new MyForm1();
        newForm.Width = 500;
        newForm.Height = 400;
        newForm.Resizable = false;
        newForm.MaximizeBox = false;
        newForm.Position = centerPoint;

        Container.Children.Add(newForm);
    }

This code is for the view:

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication1"
    mc:Ignorable="d"
     xmlns:mdi="clr-namespace:WPF.MDI;assembly=WPF.MDI"
Title="WPF.MDI Example" Height="362" Width="684" WindowState="Maximized">
<DockPanel>
    <mdi:MdiContainer Name="Container" Background="#FF474040" >
        <mdi:MdiContainer.Menu>
            <Menu DockPanel.Dock="Top" Width="677">                  
                <MenuItem Header="Menu1" click="Menu1_Click">                        
        </mdi:MdiContainer.Menu>
    </mdi:MdiContainer>
</DockPanel>

How can I center MDI child Form?

It always opens in the upper left side

I don't find the solution yet,

Thanks.

I also tried to put this code, in the code behind form child, but it doesn't works:

    public partial class MyForm1: UserControl
{
    BalanceEntities db = new BalanceEntities();
    public MyForm1()
    {
        InitializeComponent();
        this.HorizontalAlignment = HorizontalAlignment.Center;
        this.VerticalAlignment = VerticalAlignment.Center;

    }       
}

You should use WindowStartupLocation property of the Window like this:

private void Menu1_Click(object sender, RoutedEventArgs e)
{

    Point centerPoint = new Point((Container.ActualWidth  / 2) - (500/2), (Container.ActualHeight / 2) - (400 / 2));


    MdiChild newForm = new MdiChild();
    newForm .Title = "My Form";
    //The code omitted for the brevity
    newForm.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;

    Container.Children.Add(newForm);
}

OR:

this.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;

Thanks for James Thorpe , I solve my problem at this way:

  private void Menu1_Click(object sender, RoutedEventArgs e)
    {      
        MdiChild newForm = new MdiChild();
    newForm.Title = "My Form";
    newForm.Content = new MyForm1();
    newForm.Width = 500;
    newForm.Height = 400;
    newForm.Resizable = false;
    newForm.MaximizeBox = false;

    Container.Children.Add(newForm);

    // And then I add the position:
   Point centerPoint = new Point((Container.ActualWidth / 2) - (newForm.Width / 2), (Container.ActualHeight / 2) - (newForm.Height / 2));
   newForm.Position = centerPoint;
    }

Thanks for the help.

执行以下操作对我有用

newForm.StartPosition = FormStartPosition.CenterScreen;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM