forked from s434786/DINO_SCRUM
16 lines
957 B
XML
16 lines
957 B
XML
<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"
|
|
Title="Change Amount Window" Height="100" Width="300">
|
|
<Grid>
|
|
<TextBlock x:Name="fruitName" HorizontalAlignment="Left" Margin="10,10,0,0" TextWrapping="Wrap" Text="fruitName" VerticalAlignment="Top" Width="64"/>
|
|
<TextBox x:Name="amountToChange" HorizontalAlignment="Left" Margin="10,0,0,10" TextWrapping="Wrap" Text="amount" Width="64" Height="23" VerticalAlignment="Bottom"/>
|
|
<Button x:Name="saveButton" Content="Save" Margin="207,0,10,10" VerticalAlignment="Bottom" Click="saveButton_Click"/>
|
|
|
|
</Grid>
|
|
</Window>
|