mirror of
https://github.com/WinDurango/WinDurango.UI.git
synced 2026-01-31 00:55:24 +01:00
36 lines
1.9 KiB
XML
36 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<UserControl
|
|
x:Class="WinDurango.UI.Controls.ModInfo"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:WinDurango.UI.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
|
|
<ScrollViewer>
|
|
<Grid Background="{ThemeResource AcrylicBackgroundFillColorBaseBrush}" Padding="10, 10, 10, 10" CornerRadius="5" Margin="0, 0, 0, 10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel Grid.Column="0" Name="modInfo">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock x:Name="name" FontSize="20">Name</TextBlock>
|
|
<TextBlock x:Name="version" FontSize="14" Foreground="Gray" Margin="5,2,0,0">Version</TextBlock>
|
|
</StackPanel>
|
|
<TextBlock x:Name="description" FontSize="14" TextWrapping="Wrap">Description</TextBlock>
|
|
<TextBlock x:Name="publisher" FontSize="14" Foreground="Gray">Publisher</TextBlock>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Grid.Column="1">
|
|
<Button x:Name="deleteButton" ToolTipService.ToolTip="Delete" Click="DeleteMod" Margin="10, 0, 0, 10" HorizontalAlignment="Right">
|
|
<SymbolIcon Symbol="Delete"></SymbolIcon>
|
|
</Button>
|
|
<ToggleSwitch x:Name="enableSwitch" OffContent="" OnContent="" ToolTipService.ToolTip="Enabled" Margin="10, 0, -110, 10" HorizontalAlignment="Right"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</ScrollViewer>
|
|
|
|
</UserControl>
|