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


In This Topic
    DetailConfiguration Class
    In This Topic
    Class that provides a detail configuration that will be applied to the details resulting from the corresponding detail description.
    Syntax
    'Declaration
     
    <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 NotInheritable Class DetailConfiguration 
       Inherits System.Windows.FrameworkContentElement
    'Usage
     
    Dim instance As DetailConfiguration
    [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 sealed class DetailConfiguration : System.Windows.FrameworkContentElement 
    Example
    All examples in this topic assume that the grid is bound to the Employees table of the Northwind database, unless stated otherwise.
    The following code demonstrates how to bind the grid to the Employees property and provide a detail configuration for both detail relations to change their title and the item-container style of the first child detail.
    <Grid xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
          xmlns:local="clr-namespace:Xceed.Wpf.Documentation">
    
      <Grid.Resources>
         <xcdg:DataGridCollectionViewSource x:Key="cvs_employees"
                                            Source="{Binding Source={x:Static Application.Current},
                                                             Path=Employees}"/>      
         <xcdg:IndexToOddConverter x:Key="rowIndexConverter" />
       
         <Style x:Key="alternatingDataRowStyle" TargetType="{x:Type xcdg:DataRow}">
            <Style.Triggers>
               <DataTrigger Binding="{Binding RelativeSource={RelativeSource Self},
                                      Path=(xcdg:DataGridVirtualizingPanel.ItemIndex),
                                      Converter={StaticResource rowIndexConverter}}"
                            Value="True">
                  <Setter Property="Background" Value="AliceBlue"/>                    
               </DataTrigger>
            </Style.Triggers>
         </Style>
      </Grid.Resources> 
    
      <xcdg:DataGridControl x:Name="EmployeesGrid"
                            ItemsSource="{Binding Source={StaticResource cvs_employees}}"
                            AutoCreateDetailConfigurations="True">   
         <xcdg:DataGridControl.Columns>
            <xcdg:Column FieldName="Photo"
                         Visible="False" />
         </xcdg:DataGridControl.Columns>
         <xcdg:DataGridControl.DetailConfigurations>
            <xcdg:DetailConfiguration RelationName="Employee_Orders"
                                      Title="Employee Orders"
                                      ItemContainerStyle="{StaticResource alternatingDataRowStyle}">
               <xcdg:DetailConfiguration.Columns>
                  <xcdg:Column FieldName="EmployeeID"
                               Visible="False" />
               </xcdg:DetailConfiguration.Columns>
               <xcdg:DetailConfiguration.DetailConfigurations>
                  <xcdg:DetailConfiguration RelationName="Order_OrderDetails"
                                            Title="Order Details"/>                    
               </xcdg:DetailConfiguration.DetailConfigurations>
           </xcdg:DetailConfiguration>
         </xcdg:DataGridControl.DetailConfigurations>        
      </xcdg:DataGridControl>
    </Grid>
    Inheritance Hierarchy

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

    Public Constructors
    Public Fields
     NameDescription
    Public Fieldstatic (Shared in Visual Basic)Identifies the AllowDetailToggle dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the AutoCreateColumns dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the AutoCreateDetailConfigurations dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the AutoCreateForeignKeyConfigurations dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the AutoRemoveColumnsAndDetailConfigurations dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the Columns dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the DefaultDetailConfiguration dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the DefaultGroupConfiguration dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the DetailConfigurations dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the DetailIndicatorStyle dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the Footers dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the GroupConfigurationSelector dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the GroupLevelDescriptions dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the Headers dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the IsDeleteCommandEnabled dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the ItemContainerStyle dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the ItemContainerStyleSelector dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the MaxGroupLevels dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the MaxSortLevels dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the MergedHeaders dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the RelationName dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the SpannedCellConfigurationSelector dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the SpannedCellConflictResolutionMode dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the SpannedCellSelector dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the StatCellConfigurations dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the Title dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the TitleTemplate dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the UseDefaultHeadersFooters dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the VisibleColumns dependency property.  
    Public Fieldstatic (Shared in Visual Basic)Identifies the Visible dependency property.  
    Top
    Public Properties
     NameDescription
    Public PropertyGets or sets a value indicating whether the end user can toggle the expansion state of the child details of the details to which the configuration is applied.  
    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.ContentElement)
    Public PropertyGets or sets a value indicating whether the columns of the detail are automatically created.  
    Public PropertyGets or sets a value indicating whether the detail configurations of the detail are automatically created.  
    Public Property

    Gets or sets a value indicating whether the foreign key configurations are automatically created.

     
    Public Property  
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets a list of the columns that will be displayed in the details to which the configuration is applied.  
    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 or sets the detail configuration that will be applied to the child details of the detail and any descendant details when an explicit detail configuration is not provided for a specific detail relation.  
    Public PropertyGets or sets the default configuration that will be applied to any groups in the detail for which an explicit group configuration is not provided.  
    Public Property (Inherited from System.Windows.DependencyObject)
    Public PropertyGets the list of the detail configurations that have been explicitly provided for specific detail relations and that will be applied to any corresponding details.  
    Public PropertyGets or sets the style that will be applied to the detail indicators of the details to which the configuration is applied.  
    Public Property (Inherited from System.Windows.Threading.DispatcherObject)
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets a collection that contains the items that are located in the footer sections of the details to which the configuration is applied.  
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a group-configuration selector that will be used to select the appropriate configuration for a group based on its information and/or content for the details to which the configuration is applied.  
    Public PropertyGets a collection of GroupLevelDescription objects that contain information on each group level contained in the grid.  
    Public Property (Inherited from System.Windows.ContentElement)
    Public PropertyGets a collection containing the items in the header sections of the details to which the configuration is applied.  
    Public Property (Inherited from System.Windows.ContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a value indicating whether the delete command is enabled.  
    Public Property (Inherited from System.Windows.ContentElement)
    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 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 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 PropertyGets or sets the style that will be applied to the containers (DataRow) of the data items in the details to which the configuration is applied.  
    Public PropertyGets or sets a style selector that will select the appropriate style to apply to the containers (DataRow) of the data items in the detail to which the configuration is applied.  
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property

    Gets or sets a value indicating the maximum number of group levels that can be created.

     
    Public Property

    Gets or sets a value indicating the maximum number of sort levels that can be created.

     
    Public Property  
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets the name that identifies the configuration's corresponding detail descriptions defined in the parent DataGridCollectionView, DataGridCollectionViewSource, or DataGridDetailDescription.  
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets a spanned cell configuration selector that will be used to indicate which configuration to use for a given SpannedCell.  
    Public PropertyGets or sets a value that indicates how to resolve a conflict when multiple different SpannedCells can be made from the same set of cells.  
    Public PropertyGets or sets a spanned cell selector that will be used to indicate which cells can be merged, and what will be the resulting SpannedCell.  
    Public PropertyGets the collection of StatCellConfiguration for DetailConfiguration.  
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public Property (Inherited from System.Windows.FrameworkContentElement)
    Public PropertyGets or sets the title that can be used to provide a user-friendly name for the configurations corresponding detail relation and detail description.  
    Public PropertyGets or sets the template that will be used to display the configuration's title.  
    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 default headers and footers are automatically added to the header and footer sections of the details to which the configuration is applied.  
    Public PropertyGets or sets a value indicating whether the details to which the configuration is applied are visible.  
    Public PropertyGets a list of the columns whose Visible property is true, ordered according to their VisiblePositions.  
    Top
    Protected Properties
    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 MethodOverridden. Signals the beginning of a batch modification process.  
    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

    Enters a defer cycle that can be used to merge column reordering and visibility changes and delay automatic refresh.

     
    Public MethodOverridden. Signals the end of a batch modification process.  
    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 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 MethodMoves the first column immediately after the second.  
    Public MethodMoves the first column immediately before the second.  
    Public MethodMoves the specified current column under the specified parent column.  
    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 MethodOverridden. Raises the PropertyChanged event.  
    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.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 EventRaised when an InsertionRow in the detail is being initialized.  
    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 is changed.  
    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

    See Also