Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

An Application to Keep Track of Your Article Ratings Over Time

Rate me:
Please Sign up or sign in to vote.
4.79/5 (19 votes)
23 Apr 2009CPOL5 min read 57.8K   1.3K   35  
Collects and records your article ratings plus a couple of new summary ratings
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <Color x:Key="FloralWhiteColour" A="0xFF" R="0xFF" G="0xFA" B="0xF0" />
    <SolidColorBrush x:Key="FloralWhiteBrush" Color="{StaticResource FloralWhiteColour}" />

    <Color x:Key="LightOrangeColour" A="0xFF" R="0xFF" G="0xE0" B="0xB3" />
    <SolidColorBrush x:Key="LightOrangeBrush" Color="{StaticResource LightOrangeColour}" />

    <Color x:Key="OrangeColour" A="0xFF" R="0xFF" G="0x99" B="0x00" />
    <SolidColorBrush x:Key="OrangeBrush" Color="{StaticResource OrangeColour}" />

    <Color x:Key="DarkOrangeColour" A="0xFF" R="0x99" G="0x00" B="0x00" />
    <SolidColorBrush x:Key="DarkOrangeBrush" Color="{StaticResource DarkOrangeColour}" />

    <Color x:Key="DarkGreenColour" A="0xFF" R="0x48" G="0x8E" B="0x00" />
    <SolidColorBrush x:Key="DarkGreenBrush" Color="{StaticResource DarkGreenColour}" />


    <Color x:Key="NavigationColour" A="0xFF" R="0xFF" G="0xE0" B="0x99" />
    <SolidColorBrush x:Key="NavigationBrush" Color="{StaticResource NavigationColour}" />


    <Color x:Key="IncludedColour" A="0xFF" R="0xFF" G="0xE0" B="0xB3" />
    <SolidColorBrush x:Key="IncludedBrush" Color="{StaticResource IncludedColour}" />

    <Color x:Key="UserExcludedColour" A="0xFF" R="0xFF" G="0x40" B="0x40" />
    <SolidColorBrush x:Key="UserExcludedBrush" Color="{StaticResource UserExcludedColour}" />

    <Color x:Key="AutoExcludedColour" A="0xFF" R="0xFF" G="0x80" B="0x80" />
    <SolidColorBrush x:Key="AutoExcludedBrush" Color="{StaticResource AutoExcludedColour}" />

</ResourceDictionary>

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 Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom
I discovered C# and .NET 1.0 Beta 1 in late 2000 and loved them immediately.
I have been writing software professionally in C# ever since

In real life, I have spent 3 years travelling abroad,
I have held a UK Private Pilots Licence for 20 years,
and I am a PADI Divemaster.

I now live near idyllic Bournemouth in England.

I can work 'virtually' anywhere!

Comments and Discussions