14

我正在使用 Microsoft CodePlex 项目中的 WPF 数据网格。我有一个自定义控件,我想将数据绑定到数据网格行中的字段。我一生都无法弄清楚如何在数据网格行上指定工具提示。

我最接近的是使用带有 Setter 的 RowStyle 来设置工具提示,但这似乎只适用于文本。当我尝试将 ControlTempalte 作为 ToolTip 的值时,它会显示在 ControlTemplate 类型上调用 ToString 的结果。

我想我需要设置工具提示的“模板”属性,但我似乎无法弄清楚如何做到这一点......

  <dg:DataGrid Name="dgResults" AutoGenerateColumns="True">

            <dg:DataGrid.RowStyle >


            <Style TargetType="{x:Type dg:DataGridRow}">

                <Setter Property="ToolTip"  >
                    <Setter.Value>

                        <ControlTemplate TargetType="{x:Type ToolTip}">
                           <StackPanel>
                                 <TextBlock>txt1</TextBlock><TextBlock>txt2</TextBlock>
                           </StackPanel>
                        </ControlTemplate>


                    </Setter.Value>
                </Setter>
            </Style>

        </dg:DataGrid.RowStyle>

  </dg:DataGrid>
4

6 回答 6

28

想通了...花了我大约6个小时...

出于某种原因,我无法直接使用 Value.Setter 设置值。如果我将工具提示的内容定义为静态资源,然后在 DataGrid.RowStyle 的 Style 属性中设置它,它就可以工作。

因此,datagrid 行样式如下所示:

            <Style TargetType="{x:Type dg:DataGridRow}">

                <Setter Property="ToolTip" Value="{StaticResource resKWIC}">
                </Setter>                 
            </Style>

        </dg:DataGrid.RowStyle>

资源是

<Window.Resources>
    <StackPanel x:Key="resKWIC">
        <TextBlock>f1</TextBlock>
        <TextBlock>f2></TextBlock>
    </StackPanel>
</Window.Resources>

谢谢!

于 2009-04-28T09:20:46.373 回答
6

关键是使用属性 ToolTipService.ToolTip,而不是 ToolTip - 像这样:

<Setter Property="ToolTipService.ToolTip" Value="My Tooltip"/>
于 2010-03-12T00:06:13.200 回答
1

我也做了一些改变。包括它可以帮助某人。

我的 Datadrid 绑定到自定义对象列表,我想将字符串“Name”显示为列,并在工具提示中显示字符串“text”。对我(新手)来说,诀窍是我必须包含文本列并将其隐藏以使其显示在工具提示中,即:

<DataGrid AutoGenerateColumns="False" CanUserAddRows="False" EnableRowVirtualization="False" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" IsReadOnly="True" IsSynchronizedWithCurrentItem="True" ItemsSource="{Binding}" Name="dgrTextGroupText" VerticalContentAlignment="Stretch" Grid.Column="3" Grid.Row="1" Grid.RowSpan="6" CanUserReorderColumns="False" CanUserSortColumns="False">
    <DataGrid.Columns>
        <DataGridTextColumn Binding="{Binding Name}" Width="*" />
        <DataGridTextColumn Binding="{Binding Text}" Width="0" Visibility="Hidden" />
    </DataGrid.Columns>
    <DataGrid.RowStyle>
        <Style TargetType="{x:Type DataGridRow}">
            <Style.Triggers>
                <Trigger Property="IsMouseOver" Value="True">
                    <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=DataContext.text}" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </DataGrid.RowStyle>
</DataGrid>
于 2012-06-11T15:16:24.220 回答
0

没有必要ControlTemplate。如果您想要StackPanelin ToolTip,只需将其设置为:

<Setter Property="ToolTip">
    <Setter.Value>
        <StackPanel>
            <TextBlock>txt1</TextBlock><TextBlock>txt2</TextBlock>
        </StackPanel>
    </Setter.Value>
</Setter>
于 2009-04-28T07:16:40.383 回答
0

不确定您是否可以通过 XAML 做到这一点。

一种更简单的方法可能是只处理 LoadingRow 事件。在 xaml 中有类似的东西:

<dg:DataGrid Name="dgResults" AutoGenerateColumns="True" 
             LoadingRow="dgResults_LoadingRow" 
             ItemsSource="{Binding ListOfStrings}" />

然后在后面的代码中

void dgResults_LoadingRow(object sender, DataGridRowEventArgs e)
{
    DataGridRow row = e.Row;
    row.ToolTip = row.DataContext as string;
}

显然,您必须根据在数据网格中填充数据的方式更改代码。这也是未经测试的=)

于 2009-04-28T08:34:40.243 回答
0

我需要根据单元格内容动态设置工具提示。我正在使用工具提示来显示单元格中的文本溢出文本。下面的绑定来自名为 CellText 的 ac# 类属性。感谢上面的帖子让我避免自己弄清楚整个事情。

<DataGridTextColumn Header="HeaderText" Binding="{Binding DisplayText, Mode=OneWay}" Width="33*">
                            <DataGridTextColumn.CellStyle>
                                <Style>
                                    <Setter Property="ToolTipService.ToolTip" Value="{Binding DisplayText, Mode=OneWay}"/>
                                </Style>
                            </DataGridTextColumn.CellStyle>
                        </DataGridTextColumn>
于 2011-04-25T13:34:19.073 回答