Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <Page x:Class="ExpenseIt.ExpenseItHome" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
| mc:Ignorable="d" | |
| d:DesignHeight="300" d:DesignWidth="300" | |
| Title="ExpenseIt - Home"> | |
| <Grid Margin="10,0,10,10"> | |
| <!--<Snippet19>--> | |
| <Grid.Background> | |
| <ImageBrush ImageSource="watermark.png" /> | |
| </Grid.Background> | |
| <Grid.ColumnDefinitions> | |
| <ColumnDefinition Width="230" /> | |
| <ColumnDefinition /> | |
| </Grid.ColumnDefinitions> | |
| <Grid.RowDefinitions> | |
| <RowDefinition/> | |
| <RowDefinition Height="Auto"/> | |
| <RowDefinition /> | |
| <RowDefinition Height="Auto"/> | |
| </Grid.RowDefinitions> | |
| <!-- People list --> | |
| <Label Grid.Column="1" Style="{StaticResource headerTextStyle}" > | |
| View Expense Report | |
| </Label> | |
| <Border Grid.Column="1" Grid.Row="1" Style="{StaticResource listHeaderStyle}"> | |
| <Label Style="{StaticResource listHeaderTextStyle}">Names</Label> | |
| </Border> | |
| <ListBox Name="peopleListBox" Grid.Column="1" Grid.Row="2"> | |
| <ListBoxItem>Mike</ListBoxItem> | |
| <ListBoxItem>Lisa</ListBoxItem> | |
| <ListBoxItem>John</ListBoxItem> | |
| <ListBoxItem>Mary</ListBoxItem> | |
| </ListBox> | |
| <!-- View report button --> | |
| <Button Grid.Column="1" Grid.Row="3" Click="Button_Click" Style="{StaticResource buttonStyle}">View</Button> | |
| <!--</Snippet19>--> | |
| </Grid> | |
| </Page> | |