我有DataGridView
两种类型的单元格,不同的背景颜色(红色/绿色)。我想ContextMenu
为这个 DataGridView 设置一个,但我希望它对于红色单元格和绿色单元格是不同的。有没有办法这样做?
作为第二个问题,有没有办法为 , 分配 aToolTip
并DataGridViewCells
再次与红色/绿色单元格不同?
我有DataGridView
两种类型的单元格,不同的背景颜色(红色/绿色)。我想ContextMenu
为这个 DataGridView 设置一个,但我希望它对于红色单元格和绿色单元格是不同的。有没有办法这样做?
作为第二个问题,有没有办法为 , 分配 aToolTip
并DataGridViewCells
再次与红色/绿色单元格不同?
解决后,我注意到我不仅可以在 DataGridView 属性中添加 ContextMenuStrip,而且当我使用 , 到达确切的单元格时,foreach row
然后将 ContextMenuStrip 设置为确切的单元格。foreach
cell
row
在网格视图中添加工具提示 -
asp:TemplateField HeaderText="Comments" SortExpression="short_comment">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("short_comment") %>' ToolTip ='<%# Bind("longer_comment") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>