LEADTOOLS WPF and Silverlight (Leadtools.Windows.Controls assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
ShowText Property
See Also 
Leadtools.Windows.Controls Namespace > ImageList Class : ShowText Property



Gets or sets a value that indicate whether to show the items text. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("Indicates whether to display item text.")>
<CategoryAttribute("Appearance")>
Public Property ShowText As Boolean
Visual Basic (Usage)Copy Code
Dim instance As ImageList
Dim value As Boolean
 
instance.ShowText = value
 
value = instance.ShowText
C# 
[DescriptionAttribute("Indicates whether to display item text.")]
[CategoryAttribute("Appearance")]
public bool ShowText {get; set;}
C++/CLI 
[DescriptionAttribute("Indicates whether to display item text.")]
[CategoryAttribute("Appearance")]
public:
property bool ShowText {
   bool get();
   void set (    bool value);
}

Property Value

true to show the items text, otherwise; false. Default value is true.

Example

Visual BasicCopy Code
''' This example will show a <see cref="ImageList"/> control with the item text and then without the text.
Public Sub ImageList_ShowText(ByVal imageList As ImageList)
   ' Show the item text
   imageList.ShowText = True
   MessageBox.Show("Item text is visible")
   ' Hide the item text
   imageList.ShowText = False
   MessageBox.Show("Item text is not visible")

   ' Show the item text again
   imageList.ShowText = True
   MessageBox.Show("Item text is visible again")
End Sub
C#Copy Code
/// This example will show a <see cref="ImageList"/> control with the item text and then without the text.
public void ImageList_ShowText(ImageList imageList)
{
   // Show the item text
   imageList.ShowText = true;
   MessageBox.Show("Item text is visible");
   // Hide the item text
   imageList.ShowText = false;
   MessageBox.Show("Item text is not visible");

   // Show the item text again
   imageList.ShowText = true;
   MessageBox.Show("Item text is visible again");
}
SilverlightCSharpCopy Code
/// This example will show a <see cref="ImageList"/> control with the item text and then without the text.
public void ImageList_ShowText(ImageList imageList)
{
   // Show the item text
   imageList.ShowText = true;
   MessageBox.Show("Item text is visible");
   // Hide the item text
   imageList.ShowText = false;
   MessageBox.Show("Item text is not visible");

   // Show the item text again
   imageList.ShowText = true;
   MessageBox.Show("Item text is visible again");
}
SilverlightVBCopy Code
''' This example will show a <see cref="ImageList"/> control with the item text and then without the text.
Public Sub ImageList_ShowText(ByVal imageList As ImageList)
   ' Show the item text
   imageList.ShowText = True
   MessageBox.Show("Item text is visible")
   ' Hide the item text
   imageList.ShowText = False
   MessageBox.Show("Item text is not visible")

   ' Show the item text again
   imageList.ShowText = True
   MessageBox.Show("Item text is visible again")
End Sub
XAMLCopy Code
<Window x:Class="ScrollStyle.Window1" x:Name="Window" Title="Window1" Width="640" Height="480" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Leadtools_Windows_Controls="clr-namespace:Leadtools.Windows.Controls;assembly=Leadtools.Windows.Controls" xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Classic">
  <DockPanel>
    <Leadtools_Windows_Controls:ImageList Margin="8,46,8,196" HorizontalContentAlignment="Center" VerticalContentAlignment="Top" Orientation="Vertical" ShowText="False" ItemBorderThickness="2,2,2,2" ItemMargin="0,0,0,0" ItemSize="120,128" ItemImageSize="102,102" DockPanel.Dock="Left">
      <Leadtools_Windows_Controls:ImageListItem Source="file:///c:\users\Public\Documents\LEADTOOLS Images\cannon.jpg" Text="cannon.jpg" />
      <Leadtools_Windows_Controls:ImageListItem Source="file:///c:\users\Public\Documents\LEADTOOLS Images\cannon.jpg" Text="cannon.jpg" />
      <Leadtools_Windows_Controls:ImageListItem Source="file:///c:\users\Public\Documents\LEADTOOLS Images\eye.gif" Text="eye.gif" />
    </Leadtools_Windows_Controls:ImageList>
  </DockPanel>
</Window>

Remarks

Changing this property will make this control loop through all the items and setting the ImageListItem.ShowText accordingly.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also