Click here to Skip to main content
15,881,173 members
Articles / Programming Languages / C# 4.0

Silverlight 4: How to use the all new right click context menu

Rate me:
Please Sign up or sign in to vote.
5.00/5 (6 votes)
28 Nov 2009CPOL1 min read 55.7K   1.5K   16   6
This article demonstrates the all new right click feature of Silverlight 4.

Introduction

In my previous posts, I discussed about “How to work with the Notification API” and “How to Capture Video from the Default Webcam”. In this post, I will describe another cool new feature: How to use the all new right click context menu of Silverlight 4.

Background

Silverlight 4 has now support for right click. You can now register the events “MouseRightButtonDown” and “MouseRightButtonUp” to any FrameworkElement. Hence, no need to use JavaScript to disable the right click option. If you want to disable the right click option, then just implement those events with:

C#
e.Handled = true;

Code of Use

Now, if you want to implement a context menu on right click, create the popup context menu and position it in the right location. The following code will create the context menu:

C#
private Popup CreateContextMenu(Point currentMousePosition)
{
    Popup popup = new Popup();
    Grid popupGrid = new Grid();
    Canvas popupCanvas = new Canvas();

    popup.Child = popupGrid;
    popupCanvas.MouseLeftButtonDown += (sender, e) => { HidePopup(); };
    popupCanvas.MouseRightButtonDown += (sender, e) => { e.Handled = true; HidePopup(); };
    popupCanvas.Background = new SolidColorBrush(Colors.Transparent);
    popupGrid.Children.Add(popupCanvas);
    popupGrid.Children.Add(CreateContextMenuItems(currentMousePosition));

    popupGrid.Width = Application.Current.Host.Content.ActualWidth;
    popupGrid.Height = Application.Current.Host.Content.ActualHeight;
    popupCanvas.Width = popupGrid.Width;
    popupCanvas.Height = popupGrid.Height;

    return popup;
}

CreateContextMenuItems() will add some context menu items. Clicking on it will show which menu item was clicked by you. Up to this point, I had only talked about the creation of the customized context menu. Now we have to show it on right click inside the Silverlight application. In my example, I added a Border control which has the right click event registered. Now, check the code below which is responsible for showing the context menu:

C#
void brdRightClickZone_MouseRightButtonUp(object sender, MouseButtonEventArgs e)
{
    txbMessage.Text = "Right Clicked";
    Point currentMousePosition = e.GetPosition(LayoutRoot);
    ShowPopup(currentMousePosition);
}

private void btnRightClick_MouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
    e.Handled = true;
}

On right mouse down, I am setting e.Handled = true. This ensures that this will not show up the default Silverlight context menu, and the right mouse up implementation will popup the customized context menu at the current mouse position.

What next? Download the sample application and implement your own logic to create the customized context menu which will open on right click on your Silverlight application.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
GeneralMy vote of 5 Pin
Christian Amado27-Jul-12 12:05
professionalChristian Amado27-Jul-12 12:05 
GeneralNice article Pin
Punit_chauhan20-May-10 21:41
Punit_chauhan20-May-10 21:41 
GeneralRe: Nice article Pin
Kunal Chowdhury «IN»21-Sep-10 5:27
professionalKunal Chowdhury «IN»21-Sep-10 5:27 
GeneralThanks for posting this article Pin
Ziad J.khan22-Apr-10 22:51
professionalZiad J.khan22-Apr-10 22:51 
GeneralRe: Thanks for posting this article Pin
Kunal Chowdhury «IN»21-Sep-10 5:25
professionalKunal Chowdhury «IN»21-Sep-10 5:25 
GeneralRe: Thanks for posting this article Pin
egyamado3-Jan-11 0:21
egyamado3-Jan-11 0:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.