0

我有DataGridView两种类型的单元格,不同的背景颜色(红色/绿色)。我想ContextMenu为这个 DataGridView 设置一个,但我希望它对于红色单元格和绿色单元格是不同的。有没有办法这样做?

作为第二个问题,有没有办法为 , 分配 aToolTipDataGridViewCells再次与红色/绿色单元格不同?

4

2 回答 2

0

解决后,我注意到我不仅可以在 DataGridView 属性中添加 ContextMenuStrip,而且当我使用 , 到达确切的单元格时,foreach row然后将 ContextMenuStrip 设置为确切的单元格。foreach cellrow

于 2013-04-30T22:34:10.847 回答
0

在网格视图中添加工具提示 -

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>
于 2013-05-01T12:52:26.233 回答