4

我正在使用 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; 
    } 
} 

谢谢

4

1 回答 1

3
private void textBox1_KeyDown(object sender, KeyEventArgs e)
  {
   if (e.Modifiers == Keys.Control)
   {
     e.Handled = true;
    textBox1.SelectionLength = 0;
   }
  }
于 2013-07-23T06:37:01.093 回答