mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-22 09:01:19 +03:00
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:
@@ -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>
|
||||
Reference in New Issue
Block a user