简体   繁体   中英

How do we show a Silverlight Page/Usercontrol in Tooltip

Can we show a usercontrol or a navigate to a page in Silverlight Tooltip service? A tutorial/article link will do too. I tried to find but didn't find anything that was related.

I don't know about navigating to a page, but showing a control inside a tooltip is definitely possible.

For example:

<Button Content="I have a tooltip which contains a control">
  <ToolTipService.ToolTip>
    <ToolTip>
       <abc:MyUserControl />
    </ToolTip>
  </ToolTipService.ToolTip>
</Button>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM