Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/NET/Samples/Portable/SilverlightApplication/MainPage.xaml')
-rw-r--r--Rx/NET/Samples/Portable/SilverlightApplication/MainPage.xaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/Rx/NET/Samples/Portable/SilverlightApplication/MainPage.xaml b/Rx/NET/Samples/Portable/SilverlightApplication/MainPage.xaml
new file mode 100644
index 0000000..c358e56
--- /dev/null
+++ b/Rx/NET/Samples/Portable/SilverlightApplication/MainPage.xaml
@@ -0,0 +1,24 @@
+<UserControl x:Class="SilverlightApplication.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="300" d:DesignWidth="400">
+
+ <Grid x:Name="LayoutRoot" Background="White">
+ <Grid.RowDefinitions>
+ <RowDefinition Height="auto" />
+ <RowDefinition Height="*" />
+ <RowDefinition Height="auto" />
+ <RowDefinition Height="*" />
+ </Grid.RowDefinitions>
+
+ <TextBlock Text="Observable 1:" Grid.Row="0"/>
+ <ListBox x:Name="list1" Grid.Row="1" />
+
+ <TextBlock Text="Observable 2:" Grid.Row="2"/>
+ <ListBox x:Name="list2" Grid.Row="3" />
+
+ </Grid>
+</UserControl>