|
@@ -17,6 +17,7 @@
|
|
|
d:DesignHeight="450"
|
|
|
d:DesignWidth="300"
|
|
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
|
|
+ KeyDown="UserControl_KeyDown"
|
|
|
mc:Ignorable="d">
|
|
|
<UserControl.Resources>
|
|
|
<ResourceDictionary>
|
|
@@ -138,6 +139,7 @@
|
|
|
HorizontalContentAlignment="Stretch"
|
|
|
Background="{StaticResource color.sys.layout.mg}"
|
|
|
BorderThickness="0"
|
|
|
+ FocusVisualStyle="{x:Null}"
|
|
|
ItemTemplate="{StaticResource myDataTemplate}"
|
|
|
ItemsSource="{Binding Bookmarklist}"
|
|
|
PreviewMouseDown="BookMarkListView_PreviewMouseDown"
|
|
@@ -145,7 +147,10 @@
|
|
|
SelectionChanged="BookMarkListView_SelectionChanged"
|
|
|
SelectionMode="Extended">
|
|
|
<ListBox.ContextMenu>
|
|
|
- <ContextMenu x:Name="ContextMenuBook" FontSize="14" Visibility="Collapsed">
|
|
|
+ <ContextMenu
|
|
|
+ x:Name="ContextMenuBook"
|
|
|
+ FontSize="14"
|
|
|
+ Visibility="Collapsed">
|
|
|
<MenuItem Click="MenuItemRename_Click" Header="{x:Static mainPageLoader:MainPage.Bookmark_Rename}" />
|
|
|
<MenuItem Click="MenuChangeItem_Click" Header="{x:Static mainPageLoader:MainPage.Bookmark_Change}" />
|
|
|
<MenuItem Click="MenuItemDeleteCommand_Click" Header="{x:Static mainPageLoader:MainPage.Bookmark_Delete}" />
|