Click here to Skip to main content
15,885,278 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.9K   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;
using System.Windows.Navigation;
using System.Collections.ObjectModel;
using Silverlight.Controls;

namespace Menu4UDemo.Views
{
    public partial class Docking : Page
    {
        public Docking()
        {
            InitializeComponent();

            mnu1.DataSource =
            mnu2.DataSource =
            mnu3.DataSource =
            mnu4.DataSource = MenuHelper.CreateVSMenu();
        }

        // Executes when the user navigates to this page.
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
        }

        private void mnu_MenuItemClick(object sender, MenuItemEventArgs args)
        {
            var item = (MenuItem)args.MenuItem;

            //if (item.Children.Count() == 0)
            //    MessageBox.Show(string.Format("You clicked: {0}", item.Text));
        }

        private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            mnu1.CollapseAll();
            mnu2.CollapseAll();
            mnu3.CollapseAll();
            mnu4.CollapseAll();
        }
    }
}

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