aspclassiccompiler/aspclassiccompiler/SilverlightVBScriptSample/SilverlightApplication1/MainPage.xaml
dotneteer 7a719ebac9 Silverlight sample using VBScript.net compiler
--HG--
extra : convert_revision : svn%3Aa83551a4-30f6-4d81-a974-c6ced450ddbf%4031328
2009-11-04 05:54:37 +00:00

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>