我有以下代码:
public class myTextBox : TextBox
{
protected override void OnKeyPress(KeyPressEventArgs e)
{
base.OnKeyPress(e);
if (Char.IsDigit(e.KeyChar)) // Digits are OK
{
// execpt if cursor is at right end
if (this.CaretIndex == this.Text.Length)
{
e.Handled = true; // throw away keypress
}
}
}
}
我得到了错误:
“MyTextBoxes.myTextBox”不包含“CaretIndex”的定义,也没有扩展方法“CaretIndex”...
即使 CaretIndex 是 TextBox 属性: http: //msdn.microsoft.com/en-us/library/system.windows.controls.textbox.caretindex (v=vs.110).aspx