2014-12-11 5 views
0

Я пытаюсь и не показываю итоговые значения групп, совпадающие с заголовками столбцов. установив следующие свойства ShowGroupHeaderColumnAggregates и ShowHeaderAggregates, как указано, вы должны быть в состоянии, чтобы здесь Telerik Grouping DocumentationTelerik GridView для групп столбцов группы WPF

enter image description here

этого XAML я использую - я делаю что-то неправильно, или это просто не работает? Устроители недвижимости, похоже, не имеют никакого эффекта.

<Window x:Class="GridViewTest.MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="MainWindow" Height="350" Width="525" 
    xmlns:t="http://schemas.telerik.com/2008/xaml/presentation"> 
<Window.Resources> 
    <Style TargetType="t:GroupHeaderRow"> 
     <Setter Property="ShowGroupHeaderColumnAggregates" Value="True" /> 
     <Setter Property="ShowHeaderAggregates" Value="False" /> 
    </Style> 
</Window.Resources> 
<Grid> 
    <t:RadGridView ItemsSource="{Binding Path=Records}" SelectionMode="Extended"> 
     <t:RadGridView.GroupDescriptors> 
      <t:GroupDescriptor Member="Column1" SortDirection="Ascending"> 
       <t:GroupDescriptor.AggregateFunctions> 
        <t:CountFunction Caption="Entries count: " /> 
        <t:FirstFunction Caption="First entry: " /> 
       </t:GroupDescriptor.AggregateFunctions> 
      </t:GroupDescriptor> 
     </t:RadGridView.GroupDescriptors> 
    </t:RadGridView> 
</Grid> 

ответ

0

Попробуйте установить RadGridView GroupRenderMode = Flat

Смежные вопросы