我是新手WPF程序员。我的问题如下。
我有一个WPF应用程序,在主屏幕上,当我点击最大化按钮时,它不会最大化屏幕,而是将其重新定位到左上方列。如果我通过单击并拖动来增加/减小屏幕大小,则最大化按钮可以正常工作。窗口属性设置如下:
<Window x:Class="MyApp.Home"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
x:Uid="Window_Main"
x:Name="HomeWindow"
WindowStyle="None"
AllowsTransparency="True"
WindowStartupLocation="CenterScreen"
Margin="0"
BorderBrush="Transparent"
BorderThickness="0"
Title="Home"
MinWidth="1000" MinHeight="800"
ResizeMode="CanResizeWithGrip"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
SizeToContent="WidthAndHeight"
Visibility="Visible"
d:DesignHeight="1080" d:DesignWidth="1200">
XAML for按钮是:
<Button x:Uid="btnRestore" x:Name="btnRestore" Height="20" Width="20" Style="{DynamicResource Control_WindowControlBoxStyle}" Margin="5,0,0,0" ToolTip="Toggle Restore" Click="btnRestore_Click" />
btnRestore_Click的代码很简单:
private void btnRestore_Click(object sender, RoutedEventArgs e)
{
WindowState = WindowState.Maximized;
}
我确信我一定会犯一些愚蠢的错误但却无法弄清楚那是什么。看似简单,但抓住我旋转。任何帮助将不胜感激。
答案 0 :(得分:4)
您有SizeToContent="WidthAndHeight"
,这会使窗口调整为窗口中内容的大小。
删除此属性,或确保Window
代码的第一个孩子没有设置尺寸