UIElement Count : UI Element « Windows Presentation Foundation « VB.Net






UIElement Count

UIElement Count
      
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="ElemCollMethods.Pane1"
    WindowTitle="UI Element Collection Methods Sample">
 <StackPanel>
    <TextBlock Name="txt" FontSize="16">UI Element Collection - Methods</TextBlock>

    <TabControl>
        <TabItem MouseLeftButtonUp="GetCount">
            <TabItem.Header>UIElement Count</TabItem.Header>
        </TabItem>
    </TabControl>
    <StackPanel Name="sp1"></StackPanel>

 </StackPanel>
</Page>

//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Documents
Imports System.Windows.Navigation
Imports System.Windows.Shapes
Imports System.Windows.Data
Imports System.Windows.Input

Namespace ElemCollMethods

  Public Partial Class Pane1
    Inherits Page
    Private btn As System.Windows.Controls.Button, btn1 As System.Windows.Controls.Button, btn2 As System.Windows.Controls.Button, btn3 As System.Windows.Controls.Button



    Private Sub GetCount(sender As Object, e As RoutedEventArgs)
      Dim txt3 As New TextBlock()
      sp1.Children.Add(txt3)
      txt3.Text = "UIElement Count is equal to " + sp1.Children.Count.ToString()
    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.Use Linq to get control from a containerUse Linq to get control from a container
11.Find inner visual elementFind inner visual element
12.Logical Visual Tree SampleLogical Visual Tree Sample
13.Point Hit Test with VisualTreeHelper.HitTestPoint Hit Test with VisualTreeHelper.HitTest
14.Change the Visibility property of a UIElement.Change the Visibility property of a UIElement.
15.Mixing graphics with Control ElementsMixing graphics with Control Elements