2019-01-21 19:48:10 +01:00
|
|
|
<Window x:Class="Magazyn.MainWindow"
|
2019-01-22 17:35:51 +01:00
|
|
|
|
|
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
|
|
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
|
|
|
TextElement.FontWeight="Regular"
|
|
|
|
TextElement.FontSize="13"
|
|
|
|
TextOptions.TextFormattingMode="Ideal"
|
|
|
|
TextOptions.TextRenderingMode="Auto"
|
|
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
|
|
FontFamily="{DynamicResource MaterialDesignFont}"
|
|
|
|
|
2019-01-13 16:36:26 +01:00
|
|
|
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:Magazyn"
|
|
|
|
mc:Ignorable="d"
|
2019-01-22 21:02:49 +01:00
|
|
|
Title="Magazyn Owoców" Height="500" MaxWidth="590" MinWidth="590" Width="590" SizeChanged="Window_SizeChanged">
|
2019-01-22 17:35:51 +01:00
|
|
|
<Grid>
|
2019-01-22 21:02:49 +01:00
|
|
|
<ListBox x:Name="fruitList" Margin="10,35,10,89"/>
|
2019-01-13 16:36:26 +01:00
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
<Button Name="sum" Content="Wartość magazynu" Margin="0,0,10,10" VerticalAlignment="Bottom" Height="35" Click="Value_Click" HorizontalAlignment="Right" Width="163"/>
|
2019-01-22 17:35:51 +01:00
|
|
|
<Label Content="Lista owoców:" FontWeight="Bold" HorizontalAlignment="Left" Margin="10,4,0,0" VerticalAlignment="Top" Width="100"/>
|
2019-01-22 21:02:49 +01:00
|
|
|
<Button x:Name="prevButton" Content="Poprzednia" HorizontalAlignment="Left" Margin="10,0,0,52" VerticalAlignment="Bottom" Width="105" Click="prevButton_Click"/>
|
|
|
|
<Button x:Name="nextButton" Content="Następna" HorizontalAlignment="Right" Margin="0,0,10,52" VerticalAlignment="Bottom" Width="105" Click="nextButton_Click"/>
|
2019-01-23 00:33:41 +01:00
|
|
|
<ComboBox SelectionChanged="themeCombo_SelectionChanged" x:Name="themeCombo" HorizontalAlignment="Left" Margin="10,0,0,10" VerticalAlignment="Bottom" Width="162"/>
|
2019-01-14 20:10:05 +01:00
|
|
|
|
|
|
|
|
2019-01-22 17:35:51 +01:00
|
|
|
</Grid>
|
2019-01-13 16:36:26 +01:00
|
|
|
</Window>
|
2019-01-22 17:35:51 +01:00
|
|
|
|