37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<Window x:Class="MyApp.EditWindow"
|
|
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="EditWindow" Height="450" Width="400">
|
|
<Grid Margin="10">
|
|
<StackPanel>
|
|
<Label Content="Ime datoteke:"/>
|
|
<TextBox Text="{Binding Path=Name, Mode=TwoWay}"/>
|
|
|
|
<Label Content="Zvrsti:"/>
|
|
<ComboBox
|
|
Name="comboBox"
|
|
SelectionChanged="comboBox_SelectionChanged"
|
|
Text="Haha"
|
|
SelectedValue="{Binding Path=Genra}">
|
|
|
|
<ComboBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<TextBlock Text="{Binding}"/>
|
|
</DataTemplate>
|
|
</ComboBox.ItemTemplate>
|
|
</ComboBox>
|
|
|
|
<Image Name="MovieIcon" Source="{Binding Path=IconSource}" Style="{StaticResource BigImage}"/>
|
|
|
|
<Button Click="Image_Button_Click" Content="Change Imgae"/>
|
|
<Label Content="Pot datoteke:"/>
|
|
<TextBlock TextWrapping="Wrap" Text="{Binding Path=FilePath}"/>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|