Added support for Silverlight and Mono (And more)

Also added:
* Join, Choice, and Pipe to SmartThreadPool.
* Local performance counters (for Mono, Silverlight, and WindowsCE)
This commit is contained in:
Ami Bar
2009-12-19 17:36:39 +02:00
parent d2c14da5ad
commit 760bc5d1a9
61 changed files with 2960 additions and 969 deletions
+28
View File
@@ -0,0 +1,28 @@
<UserControl x:Class="STPSLDemo.UsageControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="Auto" Width="Auto">
<Grid x:Name="LayoutRoot" Loaded="LayoutRoot_Loaded" Background="Black" Height="100">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="18"/>
<ColumnDefinition Width="18"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="4"/>
</Grid.RowDefinitions>
<Border Grid.Row="0" Grid.Column="0" Width="Auto" Height="Auto">
<Border.Background>
<ImageBrush ImageSource="Resources/RedCell.jpg"/>
</Border.Background>
</Border>
<Grid.Resources>
<ImageBrush x:Name="EmptyCell" ImageSource="Resources/EmptyCell.jpg"/>
<ImageBrush x:Name="GreenCell" ImageSource="Resources/GreenCell.jpg"/>
<ImageBrush x:Name="RedCell" ImageSource="Resources/RedCell.jpg"/>
</Grid.Resources>
</Grid>
</UserControl>