拖动并按下按钮 - Windows phone
Dragging and pressing buttons - Windows phone
我有几个按钮,我想按下其中一个,然后拖动另一个按钮。喜欢滑动键盘并想从该按钮获取文本。当我拖过它们时如何获得按钮文本。我尝试了很多方法,比如操纵手势、工具包手势。你能告诉我我该怎么做的确切方法吗?谢谢
我想你想要的,可以通过每个按钮的几个 EventHandlers
来实现,例如 MouseEnter
、MouseLeave
和 MouseMove
等..!
查看代码:
例如您的按钮是:
<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;
}
希望对您有所帮助..!
我有几个按钮,我想按下其中一个,然后拖动另一个按钮。喜欢滑动键盘并想从该按钮获取文本。当我拖过它们时如何获得按钮文本。我尝试了很多方法,比如操纵手势、工具包手势。你能告诉我我该怎么做的确切方法吗?谢谢
我想你想要的,可以通过每个按钮的几个 EventHandlers
来实现,例如 MouseEnter
、MouseLeave
和 MouseMove
等..!
查看代码:
例如您的按钮是:
<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;
}
希望对您有所帮助..!