カスタムcontrolIemplateを持つ水平リストボックスがあります。選択されたアイテムは、フォーカスされると点線のフレームになります。誰もそれを取り除く方法を知っていますか?
各ListBoxItemのFocusVisualStyleをnullに設定する必要があります。手順は以下のとおりです
1)ListBoxのItemContainerStyleを作成します
<Style x:Key="ListBoxItemStyle1" TargetType="{x:Type ListBoxItem}">
<Setter Property="FocusVisualStyle" Value="{x:Null}"/> ....
2)そのスタイルをリストボックスに設定する
<ListBox ItemContainerStyle="{DynamicResource ListBoxItemStyle1}"