30 lines
1.5 KiB
Text
30 lines
1.5 KiB
Text
|
|
<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="240" Width="420"
|
||
|
|
Background="#1A1A1A" Foreground="White"
|
||
|
|
WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
|
||
|
|
<Grid Margin="24">
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<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"/>
|
||
|
|
|
||
|
|
<StackPanel Grid.Row="4" 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>
|