Intersoft ClientUI Documentation
UXTreeListTreeColumn Class
Members  See Also  Send Feedback
Intersoft.Client.UI.Data Namespace : UXTreeListTreeColumn Class






Object Model

UXTreeListTreeColumn Class

Syntax

Visual Basic (Declaration) 
Public Class UXTreeListTreeColumn 
   Inherits UXGridViewTextColumn
Visual Basic (Usage)Copy Code
Dim instance As UXTreeListTreeColumn
C# 
public class UXTreeListTreeColumn : UXGridViewTextColumn 
Delphi 
public class UXTreeListTreeColumn = class(UXGridViewTextColumn)
JScript 
public class UXTreeListTreeColumn extends UXGridViewTextColumn
Managed Extensions for C++ 
public __gc class UXTreeListTreeColumn : public UXGridViewTextColumn 
C++/CLI 
public ref class UXTreeListTreeColumn : public UXGridViewTextColumn 

Remarks

UXTreeListTreeColumn represents the tree column in UXTreeList which contains the expand and collapse button. UXTreeListTreeColumn derives from UXGridViewTextColumn, therefore you can utilize all the features available in UXGridViewTextColumn such as DisplayMode, TextAndImageRelation, CellTemplate, and CellEditTemplate.

XAML Copy Code
<Intersoft:UXTreeList AutoGenerateColumns="False" IsBusy="{Binding IsBusy, Mode=TwoWay}"
                         ItemsSource="{Binding Items}" IDBinding="{Binding EmployeeID}" ParentIDBinding="{Binding ReportsTo}">
    <Intersoft:UXTreeList.Columns>
        <Intersoft:UXTreeListTreeColumn Header="Employee ID" Binding="{Binding EmployeeID}" 
            ImageBinding="{Binding PhotoPath}" 
            DisplayMode="Image" ImageHeight="64" ImageWidth="64"/>
        <Intersoft:UXGridViewTextColumn Header="First Name" Binding="{Binding FirstName}"/>
        <Intersoft:UXGridViewTextColumn Header="Last Name" Binding="{Binding LastName}"/>
        <Intersoft:UXGridViewTextColumn Header="Address" Binding="{Binding Address}"/>
        <Intersoft:UXGridViewTextColumn Header="Home Phone" Binding="{Binding HomePhone}"/>
    </Intersoft:UXTreeList.Columns>
</Intersoft:UXTreeList>

Inheritance Hierarchy

System.Object
   System.Windows.DependencyObject
      Intersoft.Client.UI.Data.UXGridViewColumn
         Intersoft.Client.UI.Data.UXGridViewBoundColumn
            Intersoft.Client.UI.Data.UXGridViewTextColumn
               Intersoft.Client.UI.Data.UXTreeListTreeColumn

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.