-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stores.xaml
23 lines (23 loc) · 1.51 KB
/
Stores.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Window x:Class="Stores"
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:Namanga_Hope_Center"
mc:Ignorable="d"
Title="Stores" Height="450" Width="800">
<Grid>
<Grid Margin="0,10,0,-10">
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" VerticalAlignment="Top" Height="246" Width="220" Margin="28,18,0,0" >
<Button x:Name="ChairmanButton" Content="Chairman" Width="195" Height="59" Click="ChairmanButton_Click"/>
<Button x:Name="SecretaryButton" Content="Secretary" Width="196" Height="56" Margin="10" Click="SecretaryButton_Click"/>
<Button x:Name="TreasurerButton" Content="Treasurer" Width="188" Height="57" Click="TreasurerButton_Click"/>
</StackPanel>
</Grid>
<Image Source="/Resources/logo.png" Margin="0,246,653,-20"/>
<TextBox Text="Touching lives and igniting the future!" IsReadOnly="True" Margin="116,367,0,0" FontSize="40" TextWrapping="Wrap"/>
<Image Source="/Resources/IMG_1127_edited.JPG" Margin="244,20,279,72"/>
<Image Source="/Resources/IMG_0299_edited.JPG" Margin="521,-47,13,170"/>
<Image Source="/Resources/IMG_0346.JPG" Margin="521,121,13,8"/>
</Grid>
</Window>