Can someone redirect me or show me one example about how do I bind my button click of xaml to enter key on keyboard in windows phone?
質問する
575 次
1 に答える
2
バインディングを使用してこれを直接行うことはできません。コードで指定されたキーを調べてから、ボタンのクリックで起動するのと同じアクションをトリガーする必要があります。
XAML:
<TextBox KeyUp="CheckForEnterPressed" />
CS:
private void CheckForEnterPressed(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
// Do something appropriate here
}
}
このコードをページに含めたくない場合は、コントロールにカプセル化できます。
于 2013-01-30T12:56:12.917 に答える