- 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>

View File

@@ -17,11 +17,11 @@
<Grid ColumnDefinitions="*" RowDefinitions="*,40">
<ScrollViewer Margin="0,0,0,10" Padding="0,0,8,0">
<ListBox
<ItemsControl
Background="#00000000"
ItemsSource="{Binding ServerInfos}"
Padding="0">
<ListBox.ItemTemplate>
<ItemsControl.ItemTemplate>
<DataTemplate DataType="{x:Type viewModels:ServerEntryModelView}">
<Grid
ColumnDefinitions="*,120"
@@ -153,8 +153,8 @@
</Panel>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
<Border