Click here to Skip to main content
15,892,072 members
Articles / Desktop Programming / WPF

Visual Studio 2012 Metro Styles for WPF

Rate me:
Please Sign up or sign in to vote.
4.77/5 (75 votes)
9 Dec 2012CPOL8 min read 363.3K   60.8K   222  
Black Metro Styles for Button, ListBox, Menu, ScrollBar, TabControl, TextBox, ComboBox, DataGrid and GroupBox
namespace Selen.Wpf.DemoApplication
{
    public class FoodItem
    {
        public FoodItem(string name, int amount, int calories, bool reservedForCaptain)
        {
            Name = name;
            Amount = amount;
            Calories = calories;
            ReservedForCaptain = reservedForCaptain;
        }

        public string Name { get; set; }
        public int Amount { get; set; }
        public int Calories { get; set; }
        public bool ReservedForCaptain { get; set; }
    }
}

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
Student
Germany Germany
I´m a student and hobby programmer from Germany.

Comments and Discussions