7

次のコードがあります。

 <Window.Resources>      
       <DataTemplate x:Key="SectionTemplate" >                          
              <TextBlock Text="{Binding Path=Name}" />                  
       </DataTemplate>
 </Window.Resources>
 <Grid >        
   <Border>
       <HeaderedItemsControl Header="Top1"
                             ItemsSource="{Binding Path=List1}" 
                             ItemTemplate="{StaticResource SectionTemplate}"/>
    </Border>       
 </Grid>
public class MainWindow
{
   public List<Item> List1
   {
      get { return list1; }
      set { list1 = value; }
   }

   public MainWindow()
   {             
      list1.Add(new Item { Name = "abc" });
      list1.Add(new Item { Name = "xxx" });

      this.DataContext = this;      
      InitializeComponent();       
   }   
}

public class Item
{     
    public string Name { get; set; }
}

何らかの理由でItemsレンダリングされますが、ヘッダーはありません。

4

2 に答える 2

9

ドキュメントが指摘しているように:

HeaderedItemsControl には、制限付きの既定のスタイルがあります。カスタムの外観を持つ HeaderedItemsControl を作成するには、新しいControlTemplateを作成します。

したがって、そのテンプレートを作成するときContentPresenterは、にバインドされているものを含めるようにしてくださいHeader(たとえば、を使用ContentSource

例えば

<HeaderedItemsControl.Template>
    <ControlTemplate TargetType="{x:Type HeaderedItemsControl}">
        <Border>
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="Auto" />
                    <RowDefinition />
                </Grid.RowDefinitions>
                <ContentPresenter ContentSource="Header" />
                <Separator Grid.Row="1" />
                <ItemsPresenter Grid.Row="2" />
            </Grid>
        </Border>                       
    </ControlTemplate>
</HeaderedItemsControl.Template>

(デフォルトのバインディング (Margin、Background など) はすべて省略されます。 )

于 2011-08-28T12:52:32.597 に答える