是否可以在 Silverlight/Expression Blend 中的 AutoCompleteBox 中使用 RadMaskedTextBox?

发布于 2024-09-15 11:57:50 字数 173 浏览 8 评论 0原文

这可能是可行的,但以我的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清欢 2024-09-22 11:57:50

第一个答案是正确的。虽然您可以将 RadMaskedTextBox 插入自动完成模板中(步骤如下),但在内部它希望看到一个 TextBox 类来连接文本更改事件。相反,Telerik RadMaskedTextBox 派生自 Control,因此未连接该事件。

  • 将自动完成框拖到您的页面上。
  • 将 Terlerik RadMaskedTextBox 拖到您的页面上(为您添加正确的 XML 命名空间)
  • 在 Blend 中编辑自动完成模板以生成本地模板。
  • 手动编辑 XAML 模板以使用 RadMaskedTextBox 而不是 TextBox。
  • 删除 Terlerik RadMaskedTextBox

解决方案是使用另一个从 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.

  • Drag an AutocompleteBox onto your page.
  • Drag a Terlerik RadMaskedTextBox onto your page (to add the correct XML namespace for you)
  • Edit the AutoComplete template in Blend to generate a local template.
  • Manually edit the XAML template to use a RadMaskedTextBox instead of the TextBox.
  • Remove the Terlerik RadMaskedTextBox

The solution would be to use another Masked edit box that does derive from TextBox and insert it using the above steps

氛圍 2024-09-22 11:57:50

您无法使用 RadMaskedTextBox,因为它不是从 TextBox 派生的。 AutoCompleteBox 内的代码指定该部分必须至少派生自 TextBox

You can't use the RadMaskedTextBox because it doesn't derive from TextBox. The code inside AutoCompleteBox specifies that this part must at least derive from TextBox.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文