19 lines
1,007 B
XML
19 lines
1,007 B
XML
<UserControl x:Class="SilverlightApplication1.MainPage"
|
|
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"
|
|
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
|
|
<Grid x:Name="LayoutRoot" Background="Beige" ShowGridLines="True">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="220"/>
|
|
<RowDefinition Height="40"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="75" />
|
|
<ColumnDefinition Width="325"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button x:Name="MyButton" Content="Push Me!" Width="100" Height="50" Grid.Column="1" Grid.Row="0" Click="MyButton_Click" x:FieldModifier="public"></Button>
|
|
</Grid>
|
|
</UserControl>
|