15 lines
1.2 KiB
XML
Executable File
15 lines
1.2 KiB
XML
Executable File
<UserControl x:Class="SilverApp1.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:DesignHeight="400" d:DesignWidth="600" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" Width="Auto" Height="Auto">
|
|
|
|
<Grid x:Name="LayoutRoot" Background="White" Height="400" Width="600">
|
|
<Button Content="Run..." Height="23" HorizontalAlignment="Right" Margin="0,367,241,0" Name="btnClickMe" VerticalAlignment="Top" Width="119" Click="btnClickMe_Click" />
|
|
<RichTextBox HorizontalAlignment="Left" Margin="12,32,0,0" Name="richTxtBox" VerticalAlignment="Top" Height="330" Width="576" TextWrapping="NoWrap" HorizontalScrollBarVisibility="Auto" />
|
|
<TextBlock Height="23" HorizontalAlignment="Right" Margin="0,4,12,0" Name="textBlock1" Text="Silverlight Application" VerticalAlignment="Top" Width="576" Foreground="Navy" FontSize="14" TextAlignment="Center" />
|
|
</Grid>
|
|
</UserControl>
|