Datagridview display image

Source: Internet
Author: User

today. net Forum saw someone raise this question, and I also tried to display the Code of the image as follows:

<Br/> 'first, set the columntype of the column to datagridviewimagecolumn. <br/> private sub form1_load (byval sender as system. object, byval e as system. eventargs) handles mybase. load </P> <p> me. coltx. imagelayout = maid. zoom 'sets the Image Layout </P> <p> end sub </P> <p> private sub datagridview1_cellformatting (byval sender as object, byval e as system. windows. forms. datagridviewcellformattingeventargs) handles datagridview1.cellformatting </P> <p> 'path of the image to be displayed <br/> dim path as string = "C: /desktop/2.gif" </P> <p> 'reads an image as a file stream <br/> dim file as filestream = new filestream (path, filemode. open) </P> <p> dim PIC as image = image. fromstream (File) </P> <p> file. close () </P> <p> If e. columnindex = 0 then <br/> E. value = PIC <br/> end if </P> <p> end sub

images can be displayed, but in GIF format, the image is still and will not be moved. I don't know why! You need to study it!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.