Click here to Skip to main content
15,881,204 members
Articles / Desktop Programming / XAML

Silverlight Menu4U

Rate me:
Please Sign up or sign in to vote.
4.90/5 (59 votes)
14 Aug 2011CPOL11 min read 119.6K   4.1K   85  
A new Silverlight menu with styling and templating.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace Silverlight.Controls
{
    public class SLMenuItem : HeaderedItemsControl
    {
        public SLMenuItem()
        {
        }

        //#region Text

        //public static readonly DependencyProperty TextProperty =
        //    DependencyProperty.Register("Text", typeof(string), typeof(SLMenuItem),
        //    new PropertyMetadata((string)null, new PropertyChangedCallback(TextPropertyChanged)));

        //public string Text
        //{
        //    get { return (string)GetValue(TextProperty); }
        //    set { SetValue(TextProperty, value); }
        //}

        //static void TextPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        //{
        //    var menuItem = (SLMenuItem)d;
        //    var value = e.NewValue.ToString();
        //    //menuItem.txtItem.Text = value;
        //}

        //#endregion

        //public SLMenuItem()
        //{
        //    //InitializeComponent();
        //}
    }
}

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
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions