![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | ListView + ImageList Hi, I just created a list view: $listview= new-object System.Windows.Forms.ListView $listview.DropDownStyle="DropDownList" .... and i have added Items My question is how can i add an an image (icon) in each row With an ImageList?? Could you help me to solve my problem |
My System Specs![]() |
| | #2 (permalink) |
| | RE: ListView + ImageList hey group, nobody can help me? "Selko" wrote: > Hi, > > I just created a list view: > $listview= new-object System.Windows.Forms.ListView > $listview.DropDownStyle="DropDownList" > ... > and i have added Items > > My question is how can i add an an image (icon) in each row > With an ImageList?? > > Could you help me to solve my problem |
My System Specs![]() |
| | #3 (permalink) |
| | Re: ListView + ImageList On Aug 14, 5:30 pm, Selko <Se...@discussions.microsoft.com> wrote: > hey group, > > nobody can help me? > > "Selko" wrote: > > Hi, > > > I just created a list view: > > $listview= new-object System.Windows.Forms.ListView > > $listview.DropDownStyle="DropDownList" > > ... > > and i have added Items > > > My question is how can i add an an image (icon) in each row > > With an ImageList?? > > > Could you help me to solve my problem The MSDN documentation for the ListView class has a complete example: http://msdn2.microsoft.com/en-us/lib....listview.aspx Good luck. Jeff |
My System Specs![]() |
| | #4 (permalink) |
| | Re: ListView + ImageList ok thanks here is my solution $bitm=[Drawing.Image]::FromFile("pathtoimg.bmp") $imageListSmall = new-Object System.Windows.Forms.ImageList $imageListSmall.Images.Add($bitm) #ListView $lv.SmallImageList = $imageListSmall; $lv.Items.Add("Test",0) "Jeff" wrote: > On Aug 14, 5:30 pm, Selko <Se...@discussions.microsoft.com> wrote: > > hey group, > > > > nobody can help me? > > > > "Selko" wrote: > > > Hi, > > > > > I just created a list view: > > > $listview= new-object System.Windows.Forms.ListView > > > $listview.DropDownStyle="DropDownList" > > > ... > > > and i have added Items > > > > > My question is how can i add an an image (icon) in each row > > > With an ImageList?? > > > > > Could you help me to solve my problem > > The MSDN documentation for the ListView class has a complete example: > > http://msdn2.microsoft.com/en-us/lib....listview.aspx > > Good luck. > > Jeff > > |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| ImageList for Console Application | .NET General | |||