大家下午好,我觉得问这个问题有点傻,但是我一直在挖掘,找不到原因,我想这可能是我设置的一些全局风格,或者是visual studio呈现设计视图的一些bug。
现在我已经在App.xaml中设置了全局样式,在对它们进行了修改之后,我一直无法弄清楚是什么使得设计鼠标单击的选择框在显示的GUI之外。
我确实添加了一个GroupBox样式,我正在为自定义控件使用,也许这就是问题所在。我承认我在WPF方面不是最敏锐的,我想知道我是否做了一些愚蠢的事情,或者这是VS的问题。我还在图片下面包含了App.xml的内容。
感谢您的时间提前!
![在此输入图像描述
x1c 0d1x的数据
<Application
x:Class="EngineeringLabUi.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EngineeringLabUi"
StartupUri="MainWindow.xaml">
<!--
So this is the root styles that will be aplied to every control of the target types declared here.
These settings can be overriden at anytime but any new instance of one of these controls will
inherit these first.
-->
<!--Padding represents the amount of inner space an element has, while the margin is whitespace available surrounding an element. It's not possible to set padding to auto padding. However, you can use automatic settings for margins.-->
<Application.Resources>
<!--#region buttonStyle-->
<Style TargetType="Button">
<Setter Property="Padding" Value="0" />
<Setter Property="Margin" Value="0" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="IsEnabled" Value="False" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
</Style>
<!--#endregion buttonStyle-->
<!--#region ScrollViewer-->
<Style TargetType="ScrollViewer">
<Setter Property="Padding" Value="2" />
<Setter Property="Margin" Value="1,1,1,1" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="IsTabStop" Value="True" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="HorizontalScrollBarVisibility" Value="auto" />
<Setter Property="VerticalScrollBarVisibility" Value="auto" />
<Setter Property="CanContentScroll" Value="True" />
</Style>
<!--#endregion ScrollViewer-->
<!--#region RadioButton-->
<Style TargetType="RadioButton">
<Setter Property="Padding" Value="0" />
<Setter Property="Margin" Value="0" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="IsEnabled" Value="False" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="VerticalContentAlignment" Value="Center" />
</Style>
<!--#endregion RadioButton-->
<!--#region borderStyle-->
<Style TargetType="Border">
<Setter Property="Padding" Value="2" />
<Setter Property="Margin" Value="3" />
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="BorderThickness" Value="2" />
<Setter Property="CornerRadius" Value="6" />
<Setter Property="Opacity" Value="100" />
</Style>
<!--#endregion borderStyle-->
<!--#region comboBoxStyle-->
<Style TargetType="ComboBox">
<Setter Property="Padding" Value="10,5,-5,5" />
<Setter Property="Margin" Value="0" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<!--< debug />-->
<!--<Setter Property="IsEnabled" Value="False" />-->
<Setter Property="IsEnabled" Value="True" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
<!--#endregion comboBoxStyle-->
<!--#region labelStyle-->
<Style TargetType="Label">
<Setter Property="Padding" Value="0" />
<Setter Property="Margin" Value="2,0,2,0" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<!--#endregion labelStyle-->
<!--#region textBlockStyle-->
<Style TargetType="TextBlock">
<Setter Property="Padding" Value="0" />
<Setter Property="Margin" Value="2,0,2,0" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<!--#endregion textBlockStyle-->
<!--#region groupBoxStyle-->
<Style x:Key="GroupBoxStyle" TargetType="{x:Type GroupBox}">
<Setter Property="BorderBrush" Value="#D5DFE5" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupBox}">
<!-- turn off gridlines for demo, good for designing -->
<Grid ShowGridLines="True" SnapsToDevicePixels="true">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Border
x:Name="Header"
Grid.Row="0"
Grid.Column="1"
Padding="3,1,3,0">
<ContentPresenter
ContentSource="Header"
RecognizesAccessKey="True"
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
</Border>
<ContentPresenter
Grid.Row="2"
Grid.Column="1"
Grid.ColumnSpan="2"
Margin="{TemplateBinding Padding}"
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<!--#endregion groupBoxStyle-->
<!--#region checkBoxStyle-->
<Style TargetType="CheckBox">
<Setter Property="Padding" Value="0" />
<Setter Property="Margin" Value="0" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<!--< debug />-->
<!--<Setter Property="IsEnabled" Value="False" />-->
<Setter Property="IsEnabled" Value="True" />
</Style>
<!--#endregion checkBoxStyle-->
<!--#region ellipseStyle-->
<Style TargetType="Ellipse">
<Setter Property="Height" Value="20" />
<Setter Property="Margin" Value="0" />
<Setter Property="StrokeThickness" Value="3" />
<Setter Property="Width" Value="20" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="IsEnabled" Value="False" />
<Setter Property="Fill" Value="Gray" />
<Setter Property="Stroke" Value="Black" />
</Style>
<!--#endregion ellipseStyle-->
<!--#region tabControltyle-->
<Style TargetType="TabControl">
<Setter Property="Padding" Value="0" />
<Setter Property="Margin" Value="5" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="FontSize" Value="10" />
<Setter Property="IsTabStop" Value="True" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="FontStyle" Value="Normal" />
<Setter Property="Background" Value="#FFE5E5E5" />
</Style>
<!--#endregion tabControltyle-->
<!--#region tabItemStyle-->
<Style TargetType="TabItem">
<Setter Property="Padding" Value="3" />
<Setter Property="Margin" Value="0" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="FontStyle" Value="Normal" />
</Style>
<!--#endregion tabItemStyle-->
<!--#region menuItemStyle-->
<Style TargetType="MenuItem">
<!--< debug />-->
<!--<Setter Property="Foreground" Value="#FF020202" />-->
<Setter Property="Margin" Value="0" />
<Setter Property="Padding" Value="0" />
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="BorderBrush" Value="Black" />
</Style>
<!--#endregion menuItemStyle-->
<!--#region flowDocumentStyle-->
<Style TargetType="FlowDocument">
<Setter Property="ColumnRuleBrush" Value="Black" />
<Setter Property="ColumnRuleWidth" Value="1" />
<Setter Property="IsColumnWidthFlexible" Value="True" />
<Setter Property="PageWidth" Value="auto" />
</Style>
<!--#endregion flowDocumentStyle-->
<!--#region gridStyle-->
<Style TargetType="Grid">
<!--<Setter Property="MaxHeight" Value="700" />
<Setter Property="MaxWidth" Value="1400" />-->
<Setter Property="Height" Value="auto" />
<Setter Property="Width" Value="auto" />
<Setter Property="Background" Value="#FFE5E5E5" />
<Setter Property="ShowGridLines" Value="True" />
</Style>
<!--#endregion gridStyle-->
<!--#region richTextBoxStyle-->
<Style TargetType="RichTextBox">
<Setter Property="MinHeight" Value="500" />
<Setter Property="MaxHeight" Value="700" />
<Setter Property="MinWidth" Value="500" />
<Setter Property="MaxWidth" Value="1000" />
<Setter Property="HorizontalScrollBarVisibility" Value="auto" />
<Setter Property="VerticalScrollBarVisibility" Value="auto" />
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="VerticalContentAlignment" Value="Stretch" />
</Style>
<!--#endregion richTextBoxStyle-->
</Application.Resources>
字符串
更新
我认为我的MainWindow定义或我如何绑定控件宽度/高度可能有问题。我在下面包括一些关于该定义和用法的更多细节:
- MainWindow.xaml*
<Window
x:Class="EngineeringLabUi.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:bh="http://schemas.microsoft.com/xaml/behaviors"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:io="clr-namespace:System.IO.Ports;assembly=System"
xmlns:local="clr-namespace:EngineeringLabUi"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:myTypes="clr-namespace:EngineeringLabUi.CustomTypes"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:vm="clr-namespace:EngineeringLabUi.ViewModels"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
x:Name="engLabUiWindow"
Width="auto"
Height="auto"
MinWidth="500"
MinHeight="500"
MaxHeight="750"
d:DesignHeight="589.382"
Icon="/archer_logo.ico"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Visible"
ShowInTaskbar="{Binding ShowInTaskbar}"
SizeToContent="WidthAndHeight"
WindowState="{Binding WindowState}"
mc:Ignorable="d">
型
- 此文件中的一些绑定示例(所有网格都以这种方式绑定):*
<Grid x:Name="AppGrid" Height="{Binding Path=ActualHeight}">
<Grid x:Name="appConformTabGrid" Height="{Binding Path=ActualHeight}"/>
型
1条答案
按热度按时间sz81bmfz1#
解决UI相关问题的最佳方法是检查UI树。请尝试重新运行应用程序并单击此按钮
的值。
它会将您带到活动的视觉树,您可以轻松地找到行为异常的控件。