0

WPFToolkit の DataGrid 内の A ドロップダウンの各項目にツールヒント テキストをバインドする方法。

次のコードを使用しています

<WPFtoolkit:DataGridComboBoxColumn x:Name="dgCboTransformation" MinWidth="100" MaxWidth="125" 
                                             Header="Transformation" DisplayMemberPath="Name" SelectedValuePath="Signature"
                                             SelectedValueBinding="{Binding Path=Transformation}" Visibility="Collapsed"
                                             ToolTipService.IsEnabled="true">
                    <ToolTipService.ToolTip>
                        <TextBlock Foreground="Green" Text="{Binding Path=Signature}"/>
                    </ToolTipService.ToolTip>
                </WPFtoolkit:DataGridComboBoxColumn>
4

1 に答える 1

0

ItemContainerStyleを使用できるはずです。

これは、CheckListBox内のアイテムを個別に有効にするために過去にこれを行った方法です。

<wpf:CheckListBox>
  <wpf:CheckListBox.ItemContainerStyle>
    <Style TargetType="{x:Type wpf:CheckListBoxItem}">
        <Setter Property="IsEnabled"
                Value="{Binding Path=LogisticareIDIsValid}" />
        <EventSetter Event="MouseDoubleClick"
                Handler="listResultsDoubleClick" />
    </Style>
  </wpf:CheckListBox.ItemContainerStyle>
</wpf:CheckListBox>
于 2012-05-08T16:39:40.763 に答える