gpt4 book ai didi

c# - 如何为通用 Windows 应用程序设置固定窗口大小

转载 作者:太空狗 更新时间:2023-10-29 23:13:22 26 4
gpt4 key购买 nike

我刚开始在 VS2015 社区版中开发通用 Windows 应用程序。我使用了名为 PieCharts for Windows UWP 的示例。

我的问题是我想像在旧桌面应用程序中那样将窗口大小固定为 400x650。我已经手动设置了宽度和高度它不起作用。我的 MainPage.xaml 类似于以下代码。

<Page x:Class="MyFistUWP.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyFistUWP"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
MaxHeight="650" MinHeight="650" MaxWidth="400" MinWidth="400" Height="650" Width="400" >

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="140" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>

<Image Grid.Row="0" Source="Resources/my_logo.png" />
</Grid>

窗口大小错误,我可以调整窗口大小。

谢谢,

最佳答案

您可以使用此代码来设置应用程序的最小大小: ApplicationView.GetForCurrentView().SetPreferredMinSize(新尺寸(400, 650));

关于c# - 如何为通用 Windows 应用程序设置固定窗口大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36065512/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com