←Select platform

ShowText Property (ImageList)

Summary

Gets or sets a value that indicate whether to show the items text.

Syntax

C#
VB
C++
[CategoryAttribute("Appearance")] 
[DescriptionAttribute("Indicates whether to display item text.")] 
public bool ShowText {get; set;} 
<CategoryAttribute("Appearance")> 
<DescriptionAttribute("Indicates whether to display item text.")> 
Public Property ShowText As Boolean 
[CategoryAttribute("Appearance")] 
[DescriptionAttribute("Indicates whether to display item text.")] 
public: 
property bool ShowText { 
   bool get(); 
   void set (    bool ); 
} 

Property Value

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

Remarks

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

Example

C#
VB
Silverlight C#
Silverlight VB
Imports Leadtools.Windows.Controls 
Imports Leadtools.Codecs 
Imports Leadtools 
 
''' 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 
using Leadtools.Help; 
using Leadtools.Windows.Controls; 
using Leadtools; 
using Leadtools.Codecs; 
 
/// 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"); 
} 
using Leadtools.Help; 
using Leadtools.Windows.Controls; 
 
/// 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"); 
} 
Imports Leadtools.Windows.Controls 
 
''' 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 
<Window 
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" 
x:Class="ScrollStyle.Window1" 
x:Name="Window" 
Title="Window1" 
Width="640" Height="480" 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> 

Requirements

Target Platforms

See Also

Reference

ImageList Class

ImageList Members

Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
Leadtools.Windows.Controls Assembly
Click or drag to resize