Is 开发者_JAVA百科there a way to put icons for each row in a DataGrid in c #?
On WinForms, you could add a DataGridViewImageColumn and populate it with images for each row.
I'm going to assume ASP.Net. Here's an example with an image button. If you can provide more information, a better answer can be provided.
<asp:GridView ID="gridView1" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:ImageButton ID="imageButton1" runat="server" ImageUrl="some_image.jpg" /></ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
精彩评论