HomeStream/SettingsWindow.xaml

41 lines
2.1 KiB
XML

<Window x:Class="FritzTV.SettingsWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Einstellungen" Height="320" Width="440"
Background="#1A1A1A" Foreground="White"
WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid Margin="24">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="FritzBox-Adresse" FontSize="13" Foreground="#AAA"/>
<TextBox Grid.Row="1" x:Name="TxtIp" Margin="0,4,0,0" Padding="8" FontSize="14"
Background="#2A2A2A" Foreground="White" BorderBrush="#444"/>
<TextBlock Grid.Row="2" Margin="0,4,0,0" FontSize="11" Foreground="#666"
Text="z.B. 192.168.178.1 oder fritz.box · DVB-C muss aktiv sein"/>
<Separator Grid.Row="3" Margin="0,16,0,16" Background="#333"/>
<CheckBox Grid.Row="4" x:Name="ChkOnlineSources"
Content="Online-Sender anzeigen (ÖR-TV + Webradio)"
Foreground="White" FontSize="13"/>
<TextBlock Grid.Row="5" Margin="22,4,0,0" FontSize="11" Foreground="#666"
TextWrapping="Wrap"
Text="Zusätzliche Sender aus dem Internet (ARD, ZDF, 3sat, arte, Webradios). Funktioniert auch ohne FritzBox."/>
<StackPanel Grid.Row="7" Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="Abbrechen" Width="100" Height="32" Margin="0,0,8,0"
Click="BtnCancel_Click" Background="#333" Foreground="White" BorderThickness="0"/>
<Button Content="Speichern" Width="100" Height="32"
Click="BtnSave_Click" Background="#0078D4" Foreground="White" BorderThickness="0"/>
</StackPanel>
</Grid>
</Window>