Leadtools.Windows.Controls Namespace > ImageList Class : ShowText Property |
[CategoryAttribute("Appearance")] [DescriptionAttribute("Indicates whether to display item text.")] public bool ShowText {get; set;}
'Declaration <CategoryAttribute("Appearance")> <DescriptionAttribute("Indicates whether to display item text.")> Public Property ShowText As Boolean
'Usage Dim instance As ImageList Dim value As Boolean instance.ShowText = value value = instance.ShowText
[CategoryAttribute("Appearance")] [DescriptionAttribute("Indicates whether to display item text.")] public: property bool ShowText { bool get(); void set ( bool value); }
Changing this property will make this control loop through all the items and setting the ImageListItem.ShowText accordingly.
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>