如何在 DataGrid 的每个单元格中显示一条消息

发布于 2024-11-29 06:34:08 字数 140 浏览 0 评论 0原文

红色部分的图像显示我想要做的是当用户将鼠标放在每个单元格中时在 DataGrid 中显示工具提示,每个单元格中的工具提示是不同的

在此处输入图像描述

The image in the red part shows I want to do is show the tooltip in the DataGrid when the user put your mouse in each cell, the tooltip is diferent in each

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风情万种。 2024-12-06 06:34:08
<DataGrid ItemsSource="{Binding Data}">
    <DataGrid.CellStyle>
        <Style TargetType="{x:Type DataGridCell}">
            <Setter Property="ToolTip">
                <Setter.Value>
                    <TextBlock>
                        <Run Text="{Binding Name, StringFormat='{}{0}: '}" />
                        <Run Text="{Binding TypeName}" FontWeight="Bold"/>
                    </TextBlock>
                </Setter.Value>
            </Setter>
        </Style>
    </DataGrid.CellStyle>
</DataGrid>

假定绑定对象具有 Name 属性和 TypeName 属性。

<DataGrid ItemsSource="{Binding Data}">
    <DataGrid.CellStyle>
        <Style TargetType="{x:Type DataGridCell}">
            <Setter Property="ToolTip">
                <Setter.Value>
                    <TextBlock>
                        <Run Text="{Binding Name, StringFormat='{}{0}: '}" />
                        <Run Text="{Binding TypeName}" FontWeight="Bold"/>
                    </TextBlock>
                </Setter.Value>
            </Setter>
        </Style>
    </DataGrid.CellStyle>
</DataGrid>

Assumes a Name property and a TypeName property on your bound objects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文