如何向 DataGridTextColumn 添加工具提示
我正在使用 WPFtoolkit DataGrid
,我必须将文本包装在 DataGridTextColumn
或 我必须将 ToolTip
添加到文本列。 我已经在网上搜索过,但找不到合适的解决方案。 期待您的宝贵建议...
I'm using WPFtoolkit DataGrid
,I have to wrap text in a DataGridTextColumn
or
I have to add a ToolTip
to the text column. I have searched the net but i couldn't get a proper solution. Expecting your valuable suggestions...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以将工具提示文本添加到 DataGridTextColumn - 只需对其进行样式化即可
Yes, you can add tooltip text to DataGridTextColumn - just stylize it
我不确定您是否可以向
DataGridTextColumn
添加工具提示,但您可以轻松地使用DataGridTemplateColumn
和ToolTipService
来代替。 例如,在此示例中,
Moniker.Abbreviation
显示在列中。 当用户将鼠标悬停在单元格上时,完整的代理名称 (Moniker.Name
) 将显示在工具提示中。注意:此示例取自 Silverlight 3.0 应用程序。
I'm not sure if you can add a tooltip to a
DataGridTextColumn
but you can easily use theDataGridTemplateColumn
and theToolTipService
instead. e.g.In this example
Moniker.Abbreviation
is displayed in the column. When the user hovers over a cell, the full broker name (Moniker.Name
) is displayed in the tooltip.Note: This example was taken from a Silverlight 3.0 application.