This question is locked. New answers and comments are not allowed.
Good day All
I have noticed that there are some controls on my Silverlight toolbar that are from Telerik but they are not having any documentation on Telerik's site and no demo examples.I am trying to create my validation Summary that i will show from code behind when there are invalid input in my controls. I created Text-blocks and added them a stack panel and this contents are inside the Screentip, so the xaml look like this
and i am showing the Screentip like this
and the Tooltip shows , but it does not show my Controls(Textblock)
Thanks
I have noticed that there are some controls on my Silverlight toolbar that are from Telerik but they are not having any documentation on Telerik's site and no demo examples.I am trying to create my validation Summary that i will show from code behind when there are invalid input in my controls. I created Text-blocks and added them a stack panel and this contents are inside the Screentip, so the xaml look like this
<telerik:ScreenTip x:Name="ToolTip" Title="Validation Summary" HorizontalAlignment="Center" Visibility="Collapsed" Margin="131,38,67,185" Width="450" LostFocus="ToolTip_LostFocus"> <ItemsControl> <StackPanel Height="141" x:Name="PanelSummary" HorizontalAlignment="Left" Margin="78,353,0,0" VerticalAlignment="Top" Width="455"> <sdk:Label Height="27" Foreground="Red" Content="" Name="lblusername" Width="449" /> <sdk:Label Height="27" Foreground="Red" Content="" Name="lblPassword" Width="449" /> <sdk:Label Height="27" Foreground="Red" Content="" Name="lblTelephone" Width="449" /> <sdk:Label Height="27" Foreground="Red" Content="" Name="lblProvince" Width="449" /> <sdk:Label Height="27" Foreground="Red" Content="" Name="lblemail" Width="449" /> </StackPanel> </ItemsControl></telerik:ScreenTip>and i am showing the Screentip like this
ToolTip.Visibility = System.Windows.Visibility.Visible;and the Tooltip shows , but it does not show my Controls(Textblock)
Thanks