拖动按钮 - Windows phone

时间:2015-04-22 12:15:53

标签: c# windows windows-phone-8 drag

我有几个按钮,我想按下其中一个按钮并拖动另一个按下它们。像滑动键盘一样,想要从该按钮获取文本。当我拖过它们时,如何获得按钮文本。我尝试了许多方法,如操作手势,工具包手势。你能告诉我如何做到这一点的确切方法。感谢

1 个答案:

答案 0 :(得分:1)

我认为你想要的,可以通过EventHandlersMouseEnterMouseLeaveMouseMove来实现。每个按钮 <Button Content="a" KeyDown="btn_keyDown" MouseEnter="btn_mouseEnter" MouseMove="Button_MouseMove"/> 等..!

检查代码:

例如你的按钮是:

    private void Button_mouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
    {
        tb.Text += (sender as Button).Content as string;
    }

你的代码是:

app.directive("ngArticle", [function(){
  return {
    restrict: "E",
    replace: true,
    templateUrl: "/partials/article.html",
    scope: { article: "=article" }
  }
}]);

希望有帮助..!