C#WPF窗口:错误的宽度和ActualWidth值

时间:2015-07-10 16:13:07

标签: c# wpf window size

我刚在C#中编写了一个小程序,在我的桌面上显示引文。我的问题是使应用程序的窗口居中。要计算窗口的所需位置,我正在使用此公式:

        Left = (Screen.PrimaryScreen.Bounds.Width - this.ActualWidth) / 2;
        Top = (Screen.PrimaryScreen.Bounds.Height - this.ActualHeight) / 2;

不幸的是,this.ActualWidth和this.ActualHeight会给出错误的值,如屏幕截图所示。 188,4和189而不是1000(+)。

http://www.directupload.net/file/d/4044/4x2tgadg_png.htm

这是GUI:

http://www.directupload.net/file/d/4044/63rx2sul_png.htm

文本形式的代码:

public partial class QuotePresenter : Window
{
    public QuotePresenter()
    {
        InitializeComponent();
        setSize();
    }

    private void setSize()
    {
        MaxWidth = Screen.PrimaryScreen.Bounds.Width * 0.8;
        MaxHeight = Screen.PrimaryScreen.Bounds.Height * 0.8;
    }

    private void setLocation()
    {
        Left = (Screen.PrimaryScreen.Bounds.Width - this.ActualWidth) / 2;
        Top = (Screen.PrimaryScreen.Bounds.Height - this.ActualHeight) / 2;

        System.Windows.MessageBox.Show("Actual Width: " + this.ActualWidth + "\nWidth: " + this.Width);
    }

    public void SetQuote(Quotation quote)
    {
        Dispatcher.Invoke(new Action(() =>
        {
            tb_content.Text = quote.Content;
            tb_author.Text = "- " + quote.Author;

            setLocation();
        }));
    }
}

有人可以告诉我这里出了什么问题吗?

提前致谢!

1 个答案:

答案 0 :(得分:4)

我发现您的代码存在两个问题。首先,在重新调整自身大小以适应更新的文本之前,您尝试抓取窗口的新宽度。换句话说,您获得宽度(在插入引号之前)而不是新宽度。要强制窗口立即调整大小,请在UpdateLayout()方法之前调用setLocation()

第二个问题是您的潜在单位不匹配。 WPF窗口大小以布局单位指定,等于1/96英寸(可能是也可能不是像素,具体取决于您的DPI设置)。但是以像素为单位查询桌面屏幕分辨率。因此,根据用户的显示设置,您可能会混合使用单位,最终会出现错误的窗口位置。