我正在使用 c# 开发一个 windows phone 8 应用程序,我正在尝试禁用文本框中的复制和粘贴。任何人都可以提供帮助。
我努力了:
private void digitBox_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == (Key.Ctrl | Key.V) )
{
e.Handled = true;
digitBox.SelectionLength = 0;
}
}
谢谢