摘要: Blend 4中经常看到一个输入框,里面有值还有单位,当获取到焦点的时候,就只有值了,修改完值之后,失去焦点,单位又加上了。class myTextbox : TextBox { private int _timeValue=100; public int TimeValue { get { return _timeValue; } set { _timeValue = value; } } public myTextbox() { thi... 阅读全文
posted @ 2013-05-15 17:03 UncleNull 阅读(160) 评论(0) 推荐(0) 编辑