Thursday, 4 September 2014

WPF : Effective Tool tip text for Label control

<Label Grid.Row="2" Grid.Column="0" Cursor="Hand">
            ClassFunda Examhall
            <Label.ToolTip>
                <ToolTip Background="White" HasDropShadow="False">
                    <StackPanel>
                        <TextBlock>
                        Peoduct Of BeanMatrix Info Services Private Limited
                        </TextBlock>
                        <Image Height="70">           <Image.Source>http://www.beanmatrix.com/images/BeanMatrix.png</Image.Source>
                        </Image>
                        <Border Width="1" BorderBrush="Gray"></Border>
                    </StackPanel>
                </ToolTip>
            </Label.ToolTip>

        </Label>

__________________________________________________________________________________
Output


No comments:

Post a Comment