Click here to Skip to main content
15,867,686 members
Articles / General Programming / Threads

Smart Thread Pool

Rate me:
Please Sign up or sign in to vote.
4.96/5 (314 votes)
27 Aug 2012Ms-PL40 min read 2.2M   29.1K   1.1K  
A .NET Thread Pool fully implemented in C# with many features.
<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>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
Israel Israel
B.Sc. in Computer Science.
Works as Software Developer.

Comments and Discussions