32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<UserControl x:Class="Torch.Server.Views.ThemeControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:viewModels="clr-namespace:Torch.Server.ViewModels"
|
|
xmlns:managers="clr-namespace:Torch.Server.Managers"
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
|
xmlns:validationRules="clr-namespace:Torch.Server.Views.ValidationRules"
|
|
xmlns:views="clr-namespace:Torch.Views;assembly=Torch"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<DockPanel Grid.Row="0">
|
|
<Label Content="Theme:" DockPanel.Dock="Left" />
|
|
<ComboBox ItemsSource="{Binding Themes}"
|
|
SelectionChanged="Selector_OnSelectionChanged">
|
|
</ComboBox>
|
|
</DockPanel>
|
|
|
|
<TextBlock Width="Auto" Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Bottom" Name="LegalshtuffBlock">
|
|
<Hyperlink Name="LegalshtuffLink" RequestNavigate="Hyperlink_RequestNavigate">
|
|
Theme License
|
|
</Hyperlink>
|
|
</TextBlock>
|
|
</Grid>
|
|
</UserControl>
|