gpt4 book ai didi

.net - 无法创建全屏WPF弹出窗口

转载 作者:行者123 更新时间:2023-12-04 03:55:09 24 4
gpt4 key购买 nike

在VS2010 RTM中使用WPF .NET 4.0:我无法创建全屏WPF弹出窗口。

如果创建大小为50%宽度和100%高度的弹出窗口,一切正常,但如果尝试创建大小为100%宽度和高度的“全屏”弹出窗口,则最终显示为100%宽度和75%高度...底部被截断。

注意:宽度和高度实际上是用代码中的像素表示的,我使用百分比来使情况更容易理解...

就像有某种限制一样,它会阻止弹出窗口的面积超过屏幕总面积的75%,因此“感觉”到了。

更新:这是一个Hello World示例,它显示了该问题。

<Window x:Class="TechnologyVisualizer.PopupTest"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="PopupTest"
WindowStyle="None" WindowState="Maximized" Background="DarkGray">
<Canvas x:Name="MainCanvas" Width="1920" Height="1080">
<Popup Placement="Center" VerticalAlignment="Center" HorizontalAlignment="Center" Width="1900" Height="1060" Name="popContent">
<TextBlock Background="Red">Hello World</TextBlock>
</Popup>
<Button Canvas.Left="50" Canvas.Top="50" Content="Menu" Height="60" Name="button1" Width="80"
FontSize="22" Foreground="White" Background="Black" Click="button1_Click" />
</Canvas>
</Window>




using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace TechnologyVisualizer
{
/// <summary>
/// Interaction logic for PopupTest.xaml
/// </summary>
public partial class PopupTest : Window
{
public PopupTest()
{
InitializeComponent();
}

private void button1_Click(object sender, RoutedEventArgs e)
{
popContent.IsOpen = true;
}

}
}

如果运行此命令,则将弹出窗口的宽度更改为500时,将丢失弹出窗口底部25%的内容,它将完全变高

最佳答案

您对大小限制(屏幕的75%)的猜测是正确的。它记录在这里:

http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.placementmode%28VS.85%29.aspx

.NET 4文档中缺少相关的说明。我认为您需要使用另一种获得全屏显示的方法。我通常使用最大化的,无边界的,不可调整大小的窗口。

关于.net - 无法创建全屏WPF弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2633129/

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