サンプル アプリケーションを使用して問題を単純化しました。したがって、長方形で表されるいくつかのオブジェクトのリストがあります。
しかし、アプリケーションで 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>