我刚开始开发 Windows Phone 8。在 normalt winforms 中,我可以执行 OnMouseDown 和 OnMouseUp。
这将如何转化为 WP8 开发?如果按下按钮,我需要触发一些东西,而当它被释放时,我需要触发一些东西吗?
我刚开始开发 Windows Phone 8。在 normalt winforms 中,我可以执行 OnMouseDown 和 OnMouseUp。
这将如何转化为 WP8 开发?如果按下按钮,我需要触发一些东西,而当它被释放时,我需要触发一些东西吗?
请根据您的要求尝试 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";
}
我刚刚使用了事件 MouseLeftButtonDown 和 MouseLeftButtonUp