WPF : How to set a Dialog position to show at the center of the application?

前端 未结 14 2554
天命终不由人
天命终不由人 2020-12-02 16:18

How to set Dialog\'s position that came from .ShowDialog(); to show at the center of the mainWindows.

This is the way I try to set position.

         


        
14条回答
  •  渐次进展
    2020-12-02 17:05

    Just in code behind.

    public partial class CenteredWindow:Window
    {
        public CenteredWindow()
        {
            InitializeComponent();
    
            WindowStartupLocation = WindowStartupLocation.CenterOwner;
            Owner = Application.Current.MainWindow;
        }
    }
    

提交回复
热议问题