40 lines
1.7 KiB
XML

<Window x:Class="MyApp.SettingsWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MyApp"
mc:Ignorable="d"
Title="Settings" Height="450" Width="800" ResizeMode="NoResize">
<Grid Margin="5">
<TabControl>
<TabItem Header="Something">
<Grid Background="#FFE5E5E5">
<StackPanel>
<CheckBox Name="CheckAutoSave" Content="AutoSave" Click="CheckBox_Click"/>
</StackPanel>
</Grid>
</TabItem>
<TabItem Header="Zvrst">
<Grid Background="#FFE5E5E5">
<StackPanel>
<TextBox Name="InputTextBox" Height="30"/>
<Button Content="Add" Click="Add_Click" Height="25"/>
<Button Content="Remove" Click="Remove_Click" Height="25"/>
<ListView Name="GenreListView">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel>
<Label Content="{Binding}"/>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackPanel>
</Grid>
</TabItem>
</TabControl>
</Grid>
</Window>