不嘗試後該線程的重複: WPF - Binding to current item from within group header styleXAML - 綁定組頭在組頭樣式
我得到的結合工作。我不清楚它爲什麼有效。 XAML的這一部分設置組項並將Texbox綁定到文本。我不明白的是對「名稱」屬性的綁定。什麼是'名稱'的屬性?組頭?直到我找到鏈接線程時,我試圖綁定到數據網格中項目的屬性。
<ControlTemplate TargetType="{x:Type GroupItem}">
<Expander IsExpanded="True"
Background="#FF112255"
BorderBrush="#FF002255"
Foreground="#FFEEEEEE"
BorderThickness="1,1,1,5">
<Expander.Header>
<StackPanel Orientation="Horizontal">
<TextBlock FontWeight="Bold"
Text="SVC Node: "/>
<TextBlock FontWeight="Bold"
Text="{Binding Name}"/>
</StackPanel>
</Expander.Header>
<Expander.Content>
<ItemsPresenter />
</Expander.Content>
</Expander>
</ControlTemplate>
謝謝。這是我得出的結論。我鏈接到的Microsoft示例還包含綁定到Datagrid中的項目屬性的第二個文本框。這是我第一次做這件事使我感到困惑。 –