gpt4 book ai didi

c# - 将自定义工具提示添加到 DataGrid 中的行

转载 作者:可可西里 更新时间:2023-11-01 08:32:29 25 4
gpt4 key购买 nike

我想自定义我的 DataGrid 以在所选行中显示工具提示,请查看下面的模型图像以更好地了解我想要实现的目标。

目前的情况 - 显示单个选定行: enter image description here

我希望如何 - 显示选定的同一行,现在带有工具提示:

enter image description here

  • 我的 DataGrid 使用绑定(bind)到 ViewModel。
  • 使用适用于 Windows 桌面的 WPF 和 C#。

我真的不知道如何实现这一点,所以我愿意接受任何建议。

最佳答案

我使用 DataGrid.RowStyle 设置工具提示。

我的绑定(bind)对象有一个 ToolTipText 属性,其中包含 ToolTip 的内容。

<DataGrid.RowStyle>
<Style TargetType="DataGridRow">
<Setter Property="ToolTip">
<Setter.Value>
<TextBlock Text="{Binding ToolTipText}" />
</Setter.Value>
</Setter>
</Style>
</DataGrid.RowStyle>

关于c# - 将自定义工具提示添加到 DataGrid 中的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13496142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com