由于另一个库,每个标准标签现在都模糊不清
我在整个项目中使用了标准 WPF 标签。现在我包含了 Telerik(带有自己标签的第三方库),每个标准标签都给了我一个不明确的错误。除了直接通过类并指定 Windows.Controls.Label 之外,还有其他方法可以处理此问题吗?
注意:我根本没有使用 Telerik 标签,而是使用它的库中的另一个控件 - 因此,如果有一种方法告诉类将每个“标签”视为 Windows 标签,那么就可以了。
I've used standard WPF Labels throughout my project. Now that I'm including the Telerik (3rd party library with it's own Label) every single standard Label is giving me an ambiguous error. Is there some other way of dealing with this other than going right through the class and specifying Windows.Controls.Label
?
NOTE: I'm not using the Telerik Label at all, I'm using another control from it's library - so if there's a way to tell the class to treat every 'Label' as a Windows one then that'll do fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是完全限定新添加的控件(Telerik 控件),而不是添加其命名空间(如果它的使用量少于 WinForms 命名空间控件)。
The simplest way would be to fully qualify the newly added control (the Telerik one) instead of adding its namespace, if it's used less than WinForms namespace controls.