Xceed DataGrid for WPF v7.3 Documentation
Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid Namespace / Column Class
Members Example


In This Topic
    Column Class
    In This Topic
    Represents a column, which defines information on how the Cells it contains are displayed and their content edited.
    Syntax
    'Declaration
     
    <DebuggerDisplayAttribute("FieldName = {FieldName}")>
    <StyleTypedPropertyAttribute(Property="FocusVisualStyle", StyleTargetType=System.Windows.Controls.Control)>
    <XmlLangPropertyAttribute("Language")>
    <UsableDuringInitializationAttribute(True)>
    <RuntimeNamePropertyAttribute("Name")>
    <TypeDescriptionProviderAttribute(MS.Internal.ComponentModel.DependencyObjectProvider)>
    <NameScopePropertyAttribute("NameScope", System.Windows.NameScope)>
    Public Class Column 
       Inherits ColumnBase
    'Usage
     
    Dim instance As Column
    [DebuggerDisplay("FieldName = {FieldName}")]
    [StyleTypedProperty(Property="FocusVisualStyle", StyleTargetType=System.Windows.Controls.Control)]
    [XmlLangProperty("Language")]
    [UsableDuringInitialization(true)]
    [RuntimeNameProperty("Name")]
    [TypeDescriptionProvider(MS.Internal.ComponentModel.DependencyObjectProvider)]
    [NameScopeProperty("NameScope", System.Windows.NameScope)]
    public class Column : ColumnBase 
    Remarks

    The VisiblePosition property represents the visible position of the column in a grid and may, or may not, correspond to the Index property. A column's visible position can be regarded as the position the column will take when it is visible. Changing a column's visibility will not affect its visible position, allowing the visibility of columns to be changed without them being reordered. To retrieve the effective visible position of a column, the IndexOf method of the VisibleColumns collection can be used.

    When fixing columns in a table-view layout, columns will be fixed in the order represented by their VisiblePosition properties. For example, if the FixedColumnCount property is set to 2, then the columns whose VisiblePosition properties are 0 and 1 will be fixed.

    If a grid contains hidden columns, they will be ignored. For example, if the second and third columns are hidden and a fixed-column count of 2 is provided, the first and fourth columns will be fixed but their visible positions will not be modified to reflect their new positions.

    Example

    All examples in this topic assume that the grid is bound to the Orders table of the Northwind database, unless stated otherwise.

    The following example demonstrates how to provide a custom sort comparer that sorts addresses. The AddressComparer class (provided below) will first sort addresses which begin with numeric values by street name and then civic number. Address that do not have a civic number will be sorted alphabetically.The following code provides the implementation of the AddressComparer class.The following code provides the implementation of the AddressComparer class.
    <Grid xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
          xmlns:local="clr-namespace:Xceed.Wpf.Documentation">
       <Grid.Resources>
          <local:AddressComparer x:Key="addressComparer"/>
          <xcdg:DataGridCollectionViewSource x:Key="cvs_orders"
                                             Source="{Binding Source={x:Static Application.Current},
                                                              Path=Orders}"
                                             AutoCreateItemProperties="False">
             <xcdg:DataGridCollectionViewSource.ItemProperties>
                <xcdg:DataGridItemProperty Name="ShipCountry" />
                <xcdg:DataGridItemProperty Name="ShipCity" />
                <xcdg:DataGridItemProperty Name="ShipAddress"
                                           SortComparer="{StaticResource addressComparer}"/>
                <xcdg:DataGridItemProperty Name="ShipVia" />
             </xcdg:DataGridCollectionViewSource.ItemProperties>
          </xcdg:DataGridCollectionViewSource>
       </Grid.Resources>
       <xcdg:DataGridControl x:Name="OrdersGrid"
                             ItemsSource="{Binding Source={StaticResource cvs_orders}}">         
          <xcdg:DataGridControl.View>
             <xcdg:TableView ColumnStretchMode="StretchAll"/>
          </xcdg:DataGridControl.View>
       </xcdg:DataGridControl>
    </Grid>
    Imports System
    Imports System.Collections
    Imports System.Data
    Namespace Xceed.Wpf.Documentation
    
      Public Class AddressComparer
                   Implements IComparer
    
        Public Sub New()
        End Sub
        Public Function Compare( x As Object, y As Object ) As Integer Implements IComparer.Compare
          Dim stringX As String = CType( x, String )
          Dim stringY As String = Ctyle( y, String )
          Const digits As String = "0123456789"
          If( ( digits.IndexOf( stringX( 0 ) ) >= 0 ) And ( digits.IndexOf( stringY( 0 ) ) >= 0 ) ) Then
            Dim index As Integer = 0
            Dim xNumber As System.Text.StringBuilder = New System.Text.StringBuilder()
            While( ( index < stringX.Length ) And ( digits.IndexOf( stringX( index ) ) >= 0 ) )
              xNumber.Append( stringX( index ) )
              index++
            End While
            index = 0
            Dim yNumber As System.Text.StringBuilder = New System.Text.StringBuilder()
            While( ( index < stringY.Length ) And ( digits.IndexOf( stringY( index ) ) >= 0 ) )
              yNumber.Append( stringY( index ) )
              index++
            End While
            Dim xValue = Long.Parse( xNumber.ToString() )
            Dim yValue As Long = Long.Parse( yNumber.ToString() )
            If( xValue > yValue ) Then
              Return 1
            End If
            If( xValue < yValue ) Then
              Return -1
            End If
            Return stringX.CompareTo( stringY )
          Else
            Return stringX.CompareTo( stringY )
          End If
        End Function
      End Class
    End Namespace
    using System;
    using System.Collections;
    using System.Data;
    namespace Xceed.Wpf.Documentation
    {
     public class AddressComparer: IComparer
     {
       public AddressComparer()
       {
       }
    
       int IComparer.Compare( object x, object y )
       {
         string stringX = ( string )x;
         string stringY = ( string )y;
    
         const string digits = "0123456789";
         if( ( digits.IndexOf( stringX[ 0 ] ) >= 0 ) && ( digits.IndexOf( stringY[ 0 ] ) >= 0 ) )
         {
           int index = 0;
           System.Text.StringBuilder xNumber = new System.Text.StringBuilder();
    
           while( ( index < stringX.Length ) && ( digits.IndexOf( stringX[ index ] ) >= 0 ) )
           {
             xNumber.Append( stringX[ index ] );
             index++;
           }
    
           index = 0;
           System.Text.StringBuilder yNumber = new System.Text.StringBuilder();
    
           while( ( index < stringY.Length ) && ( digits.IndexOf( stringY[ index ] ) >= 0 ) )
           {
             yNumber.Append( stringY[ index ] );
             index++;
           }
    
           long xValue = long.Parse( xNumber.ToString() );
           long yValue = long.Parse( yNumber.ToString() );
    
           if( xValue > yValue )
             return 1;
    
           if( xValue < yValue )
             return -1;
    
           return stringX.CompareTo( stringY );
         }
         else
         {
           return stringX.CompareTo( stringY );
         }
       }
     }
    }
    Inheritance Hierarchy

    System.Object
       System.Windows.Threading.DispatcherObject
          System.Windows.DependencyObject
             System.Windows.ContentElement
                System.Windows.FrameworkContentElement
                   Xceed.Wpf.DataGrid.ColumnBase
                      Xceed.Wpf.DataGrid.Column

    Public Constructors
     NameDescription
    Public Constructor  
    Top
    Public Fields
     NameDescription
    Public Fieldstatic (Shared in Visual Basic)Identifies the ForeignKeyConfiguration dependency property.  
    Top
    Public Properties
     NameDescription
    Public Property

    Gets the actual width of the column considering the Width, MinWidth, and MaxWidth properties.

    (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the title of the window containing the column’s associated FilterExpressionEditor. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyOverridden. Gets or sets a value indicating if advanced filtering is allowed for this column.  
    Public PropertyOverridden. Gets or sets a value indicating if the values in the column can be filtered using automatic filtering.  
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyOverridden. Gets or sets a value indicating if the values in the column can be grouped.  
    Public PropertyOverridden. Gets or sets a value indicating if the values in the column can be sorted.  
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyGets or sets the style that will be used by the column's associated AutoFilterControl. This feature is available only in the Professional Edition (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a value indicating whether cells in the column can receive focus when the parent column's ReadOnly property is set to true. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the format used for the content of the cells. This can also impact the format of the data during export or when copying to the clipboard. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the DataTemplate used to display the cells' content. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a DataTemplateSelector that provides a way to apply a different CellContentTemplate based on custom logic. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the CellEditor that contains the information required to display the template that will be used to edit the content of the cells contained in the column as well as the activation gestures that activate the template. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a value indicating under what conditions the editors for the cells contained in the column are displayed. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a cell editor selector that will be used to select the appropriate cell editor for a given cell based on its information. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the style that will be used by the cells contained in the column when their content fails the validation process. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a value representing the horizontal content alignment of cells contained in the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the cell recycling group. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a value that indicates the direction in which a cell can span in order to merge with other cells. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets the list of CellValidationRules against which the content of the cells contained in the column are validated before they exist edit mode. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a value representing the vertical content alignment of cells contained in the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets the column's parent datagrid control. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the culture that will be used for the formatting of the values when ColumnBase.CellContentStringFormat or ColumnBase.GroupValueStringFormat are used. If no culture is specified, the CultureInfo.CurrentCulture will be used. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.DependencyObject)
    Public PropertyGets or sets a string representing the description associated to the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.Threading.DispatcherObject)
    Public PropertyGets or sets an IValueConverter that allows to export or copy a value as it is displayed in the grid and allows a user to use displayed values when entering a filter criterion in a FilterCell. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the culture in which to evaluate the converter. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the parameter to pass to the converter. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the binding information between a column and its corresponding field in the underlying data source.  
    Public PropertyGets or sets a value representing the drag behavior of the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the case-sensitive field name that uniquely identifies the column in a grid's column collection. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the style that will be used by the column’s associated FilterExpressionEditor. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a list of values that are distinct in a given column which are used to provide filtering. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a ForeignKeyConfiguration through which the visual representation of a foreign key description can be configured.  
    Public PropertyGets or sets the group configuration that will be applied to the groups that are created from the values of this column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the group description that is used whenever groups are created according to the values of this column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the format used for the content of the group header. This can also impact the format of the data during export or when copying to the clipboard. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the template that will be used by a group to display its value when the group is created according the values of the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a DataTemplateSelector that provides a way to apply a different GroupValueTemplates based on custom logic. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyGets a value indicating whether the column has a fixed width. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets a value indicating whether the content of one of the cells contained in the column failed the validation process. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets the index of the column in a grid's Column collection. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property  
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyGets a value indicating whether the column is the first visible column in a grid's. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyGets a value indicating whether the column is the last visible column in a grid. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a value indicating whether the column is a grid's main (primary) column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.DependencyObject)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets the maximum width of the column, in device-independent units (1/96th inch per unit). (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the minimum width of the column, in device-independent units (1/96th inch per unit). (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a value indicating whether an InsertionRow can be edited regardless of the value of the ReadOnly property. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets the MergedColumn to which a column is attached as a child (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a value indicating whether the content of the cells in the column can be edited. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a value indicating if the title of the column appears in the column chooser context menu, allowing its visibility to be changed at run time by the end user. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets a value indicating the direction in which the values contained in the column are sorted. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the sort directions through which the column will cycle when its associated column-manager cell or group-by item is pressed. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets the sort index of the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property

    Gets or sets a value that indicates the text trimming behavior to employ when textual content overflows the content area.

    (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a value indicating how textual content should be wrapped. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the data displayed in a column's corresponding ColumnManagerCell and/or GroupByItem. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the DataTemplate used to display the Title's content. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets a DataTemplateSelector that provides a way to apply a different TitleTemplates based on custom logic. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyGets or sets a value indicating whether the column is visible. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the visible position of the column. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public PropertyGets or sets the width of the column, in device-independent units (1/96th inch per unit). (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Top
    Public Methods
     NameDescription
    Public MethodOverloaded.  (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public MethodOverloaded.  (Inherited from System.Windows.ContentElement)
    Public MethodOverloaded.  (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public MethodOverloaded.  (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public MethodOverloaded.  (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public MethodRetrieves the fitted width of the column, in device-independent units (1/96th inch per unit). (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public Method (Inherited from System.Windows.ContentElement)
    Public MethodOverloaded.  (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public MethodOverloaded.  (Inherited from System.Windows.DependencyObject)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Public Method (Inherited from System.Windows.FrameworkContentElement)
    Top
    Protected Methods
     NameDescription
    Protected Internal Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Internal Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected MethodOverloaded. Raises the PropertyChanged event using the specified DependencyPropertyChangedEventArgs. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected MethodInvoked whenever a WeakEventManager delivers the event being managed by the class. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Protected Internal Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.ContentElement)
    Protected Internal Method (Inherited from System.Windows.FrameworkContentElement)
    Protected Internal Method (Inherited from System.Windows.DependencyObject)
    Top
    Extension Methods
     NameDescription
    Public Extension MethodOverloaded. 
    Top
    Public Events
     NameDescription
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public EventRaised when the value of a property changes. (Inherited from Xceed.Wpf.DataGrid.ColumnBase)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.ContentElement)
    Public Event (Inherited from System.Windows.FrameworkContentElement)
    Top
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also