consolidate all repos to one for archive
This commit is contained in:
36
semester_3/uporabniski_vmesniki/MyApp/EditWindow.xaml
Normal file
36
semester_3/uporabniski_vmesniki/MyApp/EditWindow.xaml
Normal file
@@ -0,0 +1,36 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user