按钮向下和向上事件



我刚刚开始开发Windows Phone 8。在正常的winforms中,我可以做OnMouseDown和OnMouseUp。

这将如何转化为WP8开发?如果按下一个按钮,我需要触发一些东西,而当它被释放时,我需要触发其他东西?

请根据您的要求尝试操作开始和操作完成事件。

        public MainPage()
        {
            InitializeComponent();
            button.ManipulationStarted += button_ManipulationStarted;
            button.ManipulationCompleted += button_ManipulationCompleted;         
        }
        void button_ManipulationCompleted(object sender, System.Windows.Input.ManipulationCompletedEventArgs e)
        {
            textblock.Text += "n mouse button up";
        }
        void button_ManipulationStarted(object sender, System.Windows.Input.ManipulationStartedEventArgs e)
        {
            textblock.Text += "n mouse button down";
        }

我只是使用事件MouseLeftButtonDown和MouseLeftButtonUp

相关内容

  • 没有找到相关文章

最新更新