|
|
@ -12,19 +12,25 @@ |
|
|
<UserControl.Resources> |
|
|
<UserControl.Resources> |
|
|
<ConvertMoels:RowToIndexConverter x:Key="RowToIndexConverter"/> |
|
|
<ConvertMoels:RowToIndexConverter x:Key="RowToIndexConverter"/> |
|
|
</UserControl.Resources> |
|
|
</UserControl.Resources> |
|
|
<Grid> |
|
|
<Grid> |
|
|
|
|
|
<Grid.RowDefinitions> |
|
|
<StackPanel x:Name="scr" VerticalAlignment="Bottom" Height="60" Background="#FF00204E" Orientation="Horizontal"> |
|
|
<RowDefinition/> |
|
|
|
|
|
<RowDefinition Height="60"/> |
|
|
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
|
<Grid Grid.Row="0"> |
|
|
|
|
|
|
|
|
|
|
|
</Grid> |
|
|
|
|
|
<StackPanel x:Name="scr" Grid.Row="1" Height="60" Background="#FF00204E" Orientation="Horizontal"> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Quit" x:Name="Quit"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Quit" x:Name="Quit"> |
|
|
<StackPanel Orientation="Horizontal" > |
|
|
<StackPanel Orientation="Horizontal" > |
|
|
<materialDesign:PackIcon Kind="PresenceExit" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<materialDesign:PackIcon Kind="NewBox" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.Quit}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.New}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
</StackPanel> |
|
|
</StackPanel> |
|
|
</ListViewItem> |
|
|
</ListViewItem> |
|
|
</ListView> |
|
|
</ListView> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_edit" IsEnabled="False" x:Name="edit"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_edit" x:Name="edit"> |
|
|
<StackPanel Orientation="Horizontal"> |
|
|
<StackPanel Orientation="Horizontal"> |
|
|
<materialDesign:PackIcon Kind="Edit" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<materialDesign:PackIcon Kind="Edit" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.edit}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.edit}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
@ -32,7 +38,7 @@ |
|
|
</ListViewItem> |
|
|
</ListViewItem> |
|
|
</ListView> |
|
|
</ListView> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Insert" IsEnabled="False" x:Name="Insert"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Insert" x:Name="Insert"> |
|
|
<StackPanel Orientation="Horizontal"> |
|
|
<StackPanel Orientation="Horizontal"> |
|
|
<materialDesign:PackIcon Kind="InsertComment" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<materialDesign:PackIcon Kind="InsertComment" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.Insert}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.Insert}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
@ -48,7 +54,7 @@ |
|
|
</ListViewItem> |
|
|
</ListViewItem> |
|
|
</ListView> |
|
|
</ListView> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Delete" IsEnabled="False" x:Name="Delete"> |
|
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Delete" x:Name="Delete"> |
|
|
<StackPanel Orientation="Horizontal"> |
|
|
<StackPanel Orientation="Horizontal"> |
|
|
<materialDesign:PackIcon Kind="Delete" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<materialDesign:PackIcon Kind="Delete" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.Delete}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
<TextBlock Text="{x:Static lang:Resources.Delete}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
|
|
|