public void Visit( DataGridContext sourceContext, System.Windows.Data.CollectionViewGroup group, object[] namesTree, int groupLevel, bool isExpanded, bool isComputedExpanded, ref bool stopVisit )
    {
      if( this.Group == null )
      {
        GroupNamesTreeKey currentGroupKey = new GroupNamesTreeKey( namesTree );

        if( currentGroupKey.Equals( m_groupNamesTreeKey ) == true )
          this.Group = group;

      }
    }
Exemple #2
0
        public void Visit(DataGridContext sourceContext, System.Windows.Data.CollectionViewGroup group, object[] namesTree, int groupLevel, bool isExpanded, bool isComputedExpanded, ref bool stopVisit)
        {
            if (this.Group == null)
            {
                GroupNamesTreeKey currentGroupKey = new GroupNamesTreeKey(namesTree);

                if (currentGroupKey.Equals(m_groupNamesTreeKey) == true)
                {
                    this.Group = group;
                }
            }
        }