-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
25 lines (20 loc) · 1.53 KB
/
Copy pathMainWindow.xaml
File metadata and controls
25 lines (20 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Window x:Class="RecipeManagementAppWPF.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:RecipeManagementAppWPF"
mc:Ignorable="d"
Title="MainWindow" Height="500" Width="370">
<Grid Margin="0,0,425,0">
<StackPanel Margin="20,20,-304,20">
<TextBlock Text="RECIPE MANAGEMENT" HorizontalAlignment="Center" FontSize="24" FontWeight="Bold" Margin="0 0 0 20"/>
<Button Name="AddRecipeBtn" Content="Add a Recipe" FontSize="24" Click="AddRecipeBtn_Click" Margin="0 0 0 10" Height="50"/>
<Button Name="DisplayRecipeBtn" Content="Display Recipe" FontSize="24" Click="DisplayRecipeBtn_Click" Margin="0 0 0 10" Height="50"/>
<Button Name="ChangeScaleBtn" Content="Change Scale" FontSize="24" Click="ChangeScaleBtn_Click" Margin="0 0 0 10" Height="50"/>
<Button Name="ResetBtn" Content="Reset to Original Value" FontSize="24" Click="ResetBtn_Click" Margin="0 0 0 10" Height="50" />
<Button Name="CreateMenuExitBtn" Content="Create Menu" Click="CreateMenuBtn_Click" FontSize="24" Margin="0 0 0 10" Height="50"/>
<Button Name="ExitBtn" Content="Exit" FontSize="24" Click="ExitBtn_Click" Margin="0 0 0 10" Height="50" />
</StackPanel>
</Grid>
</Window>