Change the Visibility property of a UIElement. : UI Element « Windows Presentation Foundation « VB.Net






Change the Visibility property of a UIElement.

Change the Visibility property of a UIElement.
       

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="Visibility_Layout_Samp.Window1"
    Title="UIELement.Visibility Sample">
      <DockPanel>
            <StackPanel DockPanel.Dock="Left">
                <Button Name="btn1" Height="25" Click="contentVis">Visibility="Visible"</Button>
                <Button Name="btn2" Height="25" Click="contentHid">Visibility="Hidden"</Button>
                <Button Name="btn3" Height="25" Click="contentCol">Visibility="Collapsed"</Button> 
            </StackPanel>    
            <StackPanel HorizontalAlignment="Center">
                <TextBox Name="tb1" Width="100" Height="50">A TextBox</TextBox>
                <TextBlock Name="txt1" TextWrapping="Wrap" FontSize="14"/>
            </StackPanel>
        </DockPanel>
</Window>

//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Documents

Namespace Visibility_Layout_Samp
  Public Partial Class Window1
    Inherits Window
    Public Sub contentVis(sender As Object, e As RoutedEventArgs)
      tb1.Visibility = System.Windows.Visibility.Visible
      txt1.Text = "Visibility is now set to Visible."
    End Sub

    Public Sub contentHid(sender As Object, e As RoutedEventArgs)
      tb1.Visibility = System.Windows.Visibility.Hidden
      txt1.Text = "Visibility is now set to Hidden."
    End Sub

    Public Sub contentCol(sender As Object, e As RoutedEventArgs)
      tb1.Visibility = System.Windows.Visibility.Collapsed
      txt1.Text = "Visibility is now set to Collapsed."
    End Sub
  End Class
End Namespace

   
    
    
    
    
    
    
  








Related examples in the same category

1.Find enclosure componentFind enclosure component
2.Clear locally set values and restore the default values of dependency propertiesClear locally set values and restore the default values of dependency properties
3.PresentationTraceSources.SetTraceLevel(binding,PresentationTraceLevel.High);PresentationTraceSources.SetTraceLevel(binding,PresentationTraceLevel.High);
4.UI Element Mouse Clicked EventsUI Element Mouse Clicked Events
5.Programmatically Extract an Element's Style with DefaultStyleKeyPropertyProgrammatically Extract an Element's Style with DefaultStyleKeyProperty
6.Print Logical TreePrint Logical Tree
7.Print Visual TreePrint Visual Tree
8.About Dialog with Tree WalkingAbout Dialog with Tree Walking
9.Changing graphical elementsChanging graphical elements
10.UIElement CountUIElement Count
11.Use Linq to get control from a containerUse Linq to get control from a container
12.Find inner visual elementFind inner visual element
13.Logical Visual Tree SampleLogical Visual Tree Sample
14.Point Hit Test with VisualTreeHelper.HitTestPoint Hit Test with VisualTreeHelper.HitTest
15.Mixing graphics with Control ElementsMixing graphics with Control Elements