Wpf Devexpress 控件的自定义工具提示
我创建了一个针对 WPF 控件显示的自定义工具提示,但不针对 DevExpress WPF 控件显示,我不知道为什么。
要添加工具提示,我会执行以下操作:
<Button.ToolTip>
<cc:TooltipControl Title="Test title" Text="Some text to show in tooltip"
ImageType="Information">
</cc:TooltipControl>
</Button.ToolTip>
我的自定义控件继承自工具提示控件,并具有我添加的一些属性,例如 Title、Text 和 ImageType嗯>。对于不属于 devexpress 的控件,会显示我的工具提示,但不会显示 DevExpress 控件。
我需要做什么才能使 DevExpress 控件显示我的工具提示?
I have created a custom tooltip that is shown for WPF controls, but not for DevExpress WPF controls and I don't know why.
To add the tooltip I do something like this:
<Button.ToolTip>
<cc:TooltipControl Title="Test title" Text="Some text to show in tooltip"
ImageType="Information">
</cc:TooltipControl>
</Button.ToolTip>
My custom control inherits from the Tooltip control and has some properties that I added like Title, Text and ImageType. For the controls that don't belong to devexpress, my tooltip is shown but not for DevExpress controls.
What do I need to do in order to make the DevExpress controls show my tooltip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用的 devexpress 控件版本似乎在编辑控件方面存在错误。我得到了一个更新的版本,现在它可以工作了,他们修复了这个错误。
It seems that the version for devexpress controls that I was using had a bug regarding the edit controls. I got a newer version and now it works, they fixed the bug.