开发者

Custom tooltips for Wpf Devexpress controls

开发者 https://www.devze.com 2023-04-08 10:53 出处:网络
I have created a custom tooltip that is shown for WPF controls, but not for DevExpress WPF controls and I don\'t know why.

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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消