mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-19 06:46:32 +03:00
disable group list horizontal scroll
This commit is contained in:
@@ -62,13 +62,16 @@
|
|||||||
ItemsSource="{Binding PasswordGroups}"
|
ItemsSource="{Binding PasswordGroups}"
|
||||||
SelectedItem="{Binding SelectedPasswordGroup}"
|
SelectedItem="{Binding SelectedPasswordGroup}"
|
||||||
Background="#FFFFFFFF"
|
Background="#FFFFFFFF"
|
||||||
SelectionMode="Single" >
|
SelectionMode="Single"
|
||||||
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled" >
|
||||||
<TreeView.ItemTemplate>
|
<TreeView.ItemTemplate>
|
||||||
<TreeDataTemplate ItemsSource="{Binding ChildGroups}">
|
<TreeDataTemplate ItemsSource="{Binding ChildGroups}">
|
||||||
<Border Background="Transparent"
|
<Border Background="Transparent"
|
||||||
DoubleTapped="Entry_DoubleTapped">
|
DoubleTapped="Entry_DoubleTapped">
|
||||||
<TextBlock Text="{Binding DisplayName}"
|
<TextBlock Text="{Binding DisplayName}"
|
||||||
Foreground="Black" />
|
Foreground="Black"
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
MaxWidth="180" />
|
||||||
<Border.ContextMenu>
|
<Border.ContextMenu>
|
||||||
<ContextMenu>
|
<ContextMenu>
|
||||||
<MenuItem Name="groupCtxMenuEdit" Header="Edit" Click="GroupContextMenuItem_Click" />
|
<MenuItem Name="groupCtxMenuEdit" Header="Edit" Click="GroupContextMenuItem_Click" />
|
||||||
|
|||||||
Reference in New Issue
Block a user