silverlight右鍵菜單實現

1.添加一個<TextBlock>到Page.xaml中


<UserControl x:Class="rightClick.Page"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="400" Height="300">
    <Grid x:Name="LayoutRoot" Background="White">
        <TextBlock x:Name="MyField">Right click please.</TextBlock>
   </Grid>
</UserControl>


  2.在頁面中設置silverlight的參數Windowless="true"  (這一點是最關鍵的!!!!!)


        <asp:Silverlight ID="Silverlight1" runat="server" Height="480px"
            MinimumVersion="2.0.30523" Source="~/ClientBin/rightClick.xap"
Windowless="true" Width="640px" />
        <object data="data:application/x-silverlight," type="application/x-silverlight-2-b2" width="100%" height="100%">
            <param name="source" value="ClientBin/rightClick.xap"/>
            <param name="onerror" value="onSilverlightError" />
            <param name="background" value="white" />
            <param name="Windowless" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=115261" style="text-decoration: none;">
                 <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none"/>
            </a>
        </object>



  3.最後修改Page.xaml.cs頁面的代碼

  新建立一個ContextMenuInterceptor類.這個類是用來處理頁面中“OnContextMenu”事件的.在用到HTMLPage對象你需要引入System.Window.Browser命名空間.

  在調用e.PeventDefault()方法後,將會取消右鍵點擊事件.所以silverlight不會捕捉到它.

  在這裏我們已經成功的攔截了右鍵點擊事件,做我們想做的任何事情了.;)


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.Browser;

namespace rightClick
{
    public partial class Page : UserControl
    {
        ContextMenuInterceptor _cmi = null;
        public Page()
        {
            InitializeComponent();
            _cmi = new ContextMenuInterceptor(MyField);
        }

    }


    public class ContextMenuInterceptor
    {
        TextBlock TextField;

        public ContextMenuInterceptor(TextBlock textField)
        {
            TextField = textField;
            HtmlPage.Document.AttachEvent("oncontextmenu", this.OnContextMenu);
        }

        private void OnContextMenu(object sender, HtmlEventArgs e)
        {
            TextField.Text = "Right Clicked Blocked at " + e.OffsetX + "," + e.OffsetY;

            //Cancels the event if it is cancelable.
            e.PreventDefault();
        }
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章