1

我刚开始开发 Windows Phone 8。在 normalt winforms 中,我可以执行 OnMouseDown 和 OnMouseUp。

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

4

2 回答 2

3

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

        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";
        }
于 2013-05-28T04:19:49.567 回答
0

我刚刚使用了事件 MouseLeftButtonDown 和 MouseLeftButtonUp

于 2014-01-01T21:54:14.963 回答