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-23 22:39:54 +01:00
|
|
|
Title="Magazyn Owoców" MinHeight="259" Height="500" MaxWidth="590" MinWidth="590" Width="590" >
|
|
|
|
<Grid>
|
|
|
|
<ListBox MouseDoubleClick="fruitListMouseDoubleClick" x:Name="fruitList" Margin="10,51,10,89"/>
|
|
|
|
<Button Name="sum" Content="Wartość magazynu" Margin="0,0,10,10" VerticalAlignment="Bottom" Height="35" Click="Value_Click" HorizontalAlignment="Right" Width="163"/>
|
|
|
|
<Label Content="Lista owoców:" FontWeight="Bold" HorizontalAlignment="Left" Margin="10,4,0,0" VerticalAlignment="Top" Width="100"/>
|
|
|
|
<Label Content="Nazwa owocu:" FontWeight="Bold" HorizontalAlignment="Left" Margin="91,25,0,0" VerticalAlignment="Top" Width="100"/>
|
2019-01-13 16:36:26 +01:00
|
|
|
|
2019-01-23 22:39:54 +01:00
|
|
|
<Label Content="Ilość:" FontWeight="Bold" HorizontalAlignment="Left" Margin="283,25,0,0" VerticalAlignment="Top" Width="46"/>
|
2019-01-23 11:07:24 +01:00
|
|
|
|
2019-01-23 22:39:54 +01:00
|
|
|
<Label Content="Cena 1szt:" FontWeight="Bold" HorizontalAlignment="Left" Margin="360,25,0,0" VerticalAlignment="Top" Width="73"/>
|
|
|
|
<Label Content="Wartość:" FontWeight="Bold" HorizontalAlignment="Left" Margin="438,25,0,0" VerticalAlignment="Top" Width="65"/>
|
2019-01-23 11:07:24 +01:00
|
|
|
|
2019-01-23 22:39:54 +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"/>
|
|
|
|
<TextBlock x:Name="pageBlock" FontSize="16" Margin="274,0,273,59" TextWrapping="Wrap" Text="NaN" Height="19" VerticalAlignment="Bottom"/>
|
2019-01-23 11:07:24 +01:00
|
|
|
|
2019-01-14 20:10:05 +01:00
|
|
|
|
2019-01-23 22:39:54 +01:00
|
|
|
</Grid>
|
2019-01-13 16:36:26 +01:00
|
|
|
</Window>
|
2019-01-22 17:35:51 +01:00
|
|
|
|