2019-01-13 16:36:26 +01:00
|
|
|
<Window x:Class="Magazyn.Windows.AmountWindow"
|
|
|
|
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.Windows"
|
|
|
|
mc:Ignorable="d"
|
2019-01-13 18:05:47 +01:00
|
|
|
Title="Change Quantity" Height="100" Width="300">
|
2019-01-13 16:36:26 +01:00
|
|
|
<Grid>
|
|
|
|
<TextBlock x:Name="fruitName" HorizontalAlignment="Left" Margin="10,10,0,0" TextWrapping="Wrap" Text="fruitName" VerticalAlignment="Top" Width="64"/>
|
2019-01-13 18:05:47 +01:00
|
|
|
<TextBox x:Name="amountToChange" HorizontalAlignment="Left" Margin="10,0,0,10" TextWrapping="Wrap" Text="0" Width="64" Height="23" VerticalAlignment="Bottom"/>
|
2019-01-13 16:36:26 +01:00
|
|
|
<Button x:Name="saveButton" Content="Save" Margin="207,0,10,10" VerticalAlignment="Bottom" Click="saveButton_Click"/>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Window>
|