forked from s434786/DINO_SCRUM
16 lines
832 B
XML
16 lines
832 B
XML
<Window x:Class="Magazyn.MainWindow"
|
|
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"
|
|
Title="Fruit Warehouse" Height="350" Width="525">
|
|
<Grid>
|
|
<ListBox x:Name="fruitList" Margin="10,10,90,35"/>
|
|
<Button Content="Get List" Margin="0,10,10,0" VerticalAlignment="Top" Click="Button_Click" HorizontalAlignment="Right" Width="75"/>
|
|
<Button Content="Summary" Margin="0,0,90,10" Click="Button_Click_1" HorizontalAlignment="Right" Width="75" Height="20" VerticalAlignment="Bottom"/>
|
|
|
|
</Grid>
|
|
</Window>
|