(X) Hide this Upcoming webinar on Feb 23rd, 10 am PST (see your local time): Building Line-of-business Applications with Silverlight & WCF Data Services
More webinar info | Register | Other webinars
Tweet @silverlightshow and win a SilverlightShow Tweet-shirt. Learn how >>
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 4 results for ToolTip.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Silverlight Show  on  Jul 15, 2009 (more than a year ago)
    Corey Schuman demonstrates how to style a Tooltip in Blend 3.

    ToolTips are a great way to display mouse over information, while increasing your applications accessibility.  UI designers are increasingly demanding the use of rich overlays in applications.  Meaning, instead of a standard Tooltip, a designer might want to add polish by adding animation or having a rich UI to a overlay.  Initially you may consider wiring up a MouseEnter and MouseLeave event, then handle an overlay through the code; however, I would encourage you to take a look (or second look) at the Tooltip.



  • 0 comments  /  posted by  Silverlight Show  on  Nov 21, 2008 (more than a year ago)

    David Betz has published the article “Understanding WCF Services in Silverlight 2”. It’s a great discussion on how to access WCF services using Silverlight 2. Here you can learn about various WCF attributes, service and client setup, diverse WCF and Silverlight paradigms and much more.


    Jesse Liberty is now ready with the second part of his posts on Silverlight Related Skills. This time he presents a number of advanced techniques that are common with Linq programmers.


    Ruurd Boeke is introducing TransitionContentControl. In the post you will see how to write a very simple contentControl, that allows you to transition your old with your new content.


    A month ago Jeff Wilcox posted about the managed wrapper for client-side HTML controls used in the Silverlight unit test framework. Those of you who have liked the post will be very happy to learn that now the source is available for download.


    At Lee’s Corner you can learn how to customize the tooltip in Silverlight toolkit charts. There you will find the original and the modified code.


    Silverlight Girl will teach you how to Obtain cool looking text without embedding fonts in Expression Blend 2.


    If you find it really hard to tell when your Silverlight container itself is getting focus (after not having it) or loosing focus, then you better read the article of Tim Greenfield – “GotFocus and LostFocus events on Silverlight containers”.


    Here is a discussion with Miguel Castro, Todd Anglin, Shawn Wildermuth, and Steven Smith about The Future of Web Development Panel. It’s recorded live at Devreach in Sofia, Bulgaria. Listen to it now!


    Mike Taulty has made a little experiment with Text Animation. Check what has turned out!


    Mark Johnson shares his opinion about the Imagine Cup competition and will surely convince you to register for it now.

  • 3 comments  /  posted by  Martin Mihaylov  on  Sep 11, 2008 (more than a year ago)

    If you want to add a tooltip to a control you must first check if it allows the ToolTipService namespace. If yes, you can add the tooltip the following way:

    Xaml

    <Button x:Name="MyButton" Content="Hello!" Width="50" Height="30">
        <ToolTipService.ToolTip>
            <TextBlock x:Name="ToolTip" Text="Click me!"></TextBlock>
        </ToolTipService.ToolTip>
    </Button>

    C#

    ToolTipService.SetToolTip( MyButton, new TextBlock() { Text = "Click me!" } );

    You can also use another control instead of TextBlock, for example Image control or Rectangle control.

    That's it!
     

  • 7 comments  /  posted by  Martin Mihaylov  on  Jun 08, 2008 (more than a year ago)

    This article is compatible with the latest version of Silverlight. 

    New information about the tooltip can be found here.

    Introduction

    The theme of this article is the ToolTip control. It can be very useful as it enhances our application’s user interface.

    Using the ToolTip Control

    The ToolTipService class must be used along with the ToolTip control in order to display a tooltip to our control.  For the example I will use an image control, but the following can be applied to each of the controls.