consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View 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>