我有一个wpf c#app。
我正在使用datagrid控件。
对于其中一个单元格,我想展示一个多线工具提示。
这是我的代码:
w.create_rectangle(x, y, s, s, fill="green")
但是当我运行时,没有显示工具提示?
答案 0 :(得分:6)
您可以使用CellStyle设置DataGridCell的Tooltip属性:
<DataGridTextColumn Header="{x:Static prop:Resources.Address}" Binding="{Binding Address}" >
<DataGridTextColumn.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="ToolTip">
<Setter.Value>
<ToolTip>
<StackPanel>
<TextBlock Text="Line#1" />
<TextBlock Text="Line#2" />
</StackPanel>
</ToolTip>
</Setter.Value>
</Setter>
</Style>
</DataGridTextColumn.CellStyle>
</DataGridTextColumn>