WPF 中心栏问题

WPF 中心栏问题

我最近开始学习 C# WPF UI,每次运行应用程序时都会出现一个栏(见下图)。我可能做了一些鲁莽的更改,导致出现问题。有什么建议吗? 在此处输入图片描述

代码:

<Window x:Class="WPFHello.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WPFHello"
    mc:Ignorable="d"
    Title="Hello" Height="450" Width="800">
<Grid>
    <Label Content="Label" HorizontalAlignment="Left" VerticalAlignment="Top" RenderTransformOrigin="1.575,1.359" FontSize="20" Margin="10,10,0,0"/>
</Grid>

答案1

这是一个每次运行应用程序时都会出现的调试工具。

您可以像这样禁用它:转到工具 –> 选项 –> 调试 –> 常规 –> 取消选中启用 XAML 的 UI 调试工具。

希望这对你有帮助。谢谢。

相关内容