我用一个示例应用程序简化了我的问题。所以我有一个列表,其中包含一些由矩形表示的对象。
但是,如果我的应用程序打开 Windows 8,我会遇到问题。当我将鼠标放在元素上时,我的矩形周围会出现一个蓝色矩形。我尝试了一些在互联网上找到的解决方案,但它们都不起作用。
我的代码:
<Window x:Class="Test_application.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Test_application"
Title="MainWindow" Height="350" Width="525">
<Grid Background="DarkGray">
<ListBox Margin="10" x:Name="lbTest">
<ListBox.Resources>
<DataTemplate DataType="{x:Type local:Segment}">
<Rectangle Width="150" Height="10" Stroke="Gray" StrokeThickness="1.354" Margin="10"/>
</DataTemplate>
</ListBox.Resources>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<Canvas />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="Canvas.Left" Value="{Binding X}"/>
<Setter Property="Canvas.Top" Value="{Binding Y}"/>
<Setter Property="Margin" Value="0" />
<Setter Property="Focusable" Value="False" />
<Setter Property="Padding" Value="0" />
<Setter Property="VerticalContentAlignment" Value="Stretch"/>
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
<Setter Property="Background" Value="{x:Null}" />
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
</Grid>