Intersoft ClientUI Documentation
TooltipStyle Property (EllipsisText)



Gets or sets the tooltip style.
Syntax
Public Property TooltipStyle As Style
Dim instance As EllipsisText
Dim value As Style
 
instance.TooltipStyle = value
 
value = instance.TooltipStyle
public Style TooltipStyle {get; set;}
public:
property Style^ TooltipStyle {
   Style^ get();
   void set (    Style^ value);
}
Remarks

EllipsisText also support interactive tooltip to show the actual text. You can customize the style through the TooltipStyle property, which is shown in the following example.

XAML
Copy Code
<UserControl.Resources>
    <Style x:Key="StylishLabelStyle1" TargetType="Intersoft:StylishLabel">
        <Setter Property="Background" Value="#AA000000"/>
        <Setter Property="Foreground" Value="White"/>
        <Setter Property="CornerRadius" Value="8"/>        
    </Style>
</UserControl.Resources>
<Grid x:Name="LayoutRoot" Background="White">
    <Intersoft:EllipsisText Text="Some quite long text" EllipsisPosition="Right" TooltipStyle="{StaticResource StylishLabelStyle1}" Width="80"/>
</Grid>

Alternatively, you can use the standard tooltip from Silverlight instead of StylishLabel control by changing the TooltipUIMode to Basic.

XAML
Copy Code
<Intersoft:EllipsisText Text="Some quite long text" EllipsisPosition="Right" TooltipUIMode="Basic"/>

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EllipsisText Class
EllipsisText Members

Concepts

EllipsisText

Send Feedback