是否可以在 Silverlight/Expression Blend 中的 AutoCompleteBox 中使用 RadMaskedTextBox?
这可能是可行的,但以我的n00b技能,我还无法弄清楚这一点。
当我尝试在 RadMaskedTextBox 上“制作成零件”时,Expression Blend 抱怨它不是文本框。
我怎样才能将其用作适当的控制部件?我可以在 XAML 中以某种方式“类型转换”吗?
预先感谢所有帮助!
It's probably doable, but with my n00b skills I couldn't figure this out yet.
When I try to "Make Into Part" on the RadMaskedTextBox, Expression Blend complains that it's not a TextBox.
How can I make it to use it as a proper control part? Can I "typecast" somehow in XAML?
Thanks in advance for all help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一个答案是正确的。虽然您可以将 RadMaskedTextBox 插入自动完成模板中(步骤如下),但在内部它希望看到一个 TextBox 类来连接文本更改事件。相反,Telerik RadMaskedTextBox 派生自 Control,因此未连接该事件。
解决方案是使用另一个从 TextBox 派生的 Masked 编辑框,并使用上述步骤插入它
The first answer is correct. While you can insert a RadMaskedTextBox into an autocomplete template (steps below), internally it wants to see a TextBox class to hook up the text changed event. The Telerik RadMaskedTextBox derives from Control instead, so the event is not hooked up.
The solution would be to use another Masked edit box that does derive from TextBox and insert it using the above steps
您无法使用
RadMaskedTextBox
,因为它不是从TextBox
派生的。AutoCompleteBox
内的代码指定该部分必须至少派生自TextBox
。You can't use the
RadMaskedTextBox
because it doesn't derive fromTextBox
. The code insideAutoCompleteBox
specifies that this part must at least derive fromTextBox
.