- add: Log

This commit is contained in:
2025-01-07 19:14:42 +03:00
parent 99312d38a8
commit b16b21e954
8 changed files with 177 additions and 20 deletions

View File

@@ -24,12 +24,11 @@
<Label HorizontalAlignment="Center">Profiles:</Label>
</Border>
<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
<ListBox
<ItemsControl
Background="#00000000"
Classes="AccountSelector"
ItemsSource="{Binding Accounts}"
Padding="0">
<ListBox.ItemTemplate>
<ItemsControl.ItemTemplate>
<DataTemplate DataType="{x:Type viewModels:AuthLoginPasswordModel}">
<Border
CornerRadius="0,10,0,10"
@@ -64,8 +63,8 @@
</Panel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
</StackPanel>