Vid kodning i Visual Basic är DataGridView kontroll används för att organisera dina kodning i programmet eller programmet element som du designar . Bilder kan infogas i dina Visual Studio applikationer genom att använda kodning i DataGrid kodningsdelen . Medan Visual Studio kan du kod i olika kodspråk , de enda två kodspråk som stöder bilder i DataGridView är Visual Basic ( VB ) och C # . Den kodar för alla är olika . Instruktioner
1
Öppna din Visual Basic -projektet , i kodningsmod , där du vill att programmatiskt bort bilderna i DataGrid .
2
Lokalisera , om koden är i VB , kod som liknar följande struktur : Public Sub CreateGraphicsColumn ( ) katalog
Dim treeIcon som New Ikon ( Me.GetType ( ) , " tree.ico " ) Dim iconColumn As New DataGridViewImageColumn ( )
iconColumn.Image = treeIcon.ToBitmap ( ) . Name = " träd " . HeaderText = " Trevlig tree " End With
dataGridView1.Columns.Insert ( 2 , iconColumn )
End Sub
3
Lokalisera , om din kod är i C # , kod som liknar följande struktur : private void createGraphicsColumn ( ) { Ikon treeIcon = ny Ikon ( detta . getType ( ) , " tree.ico " ) ; DataGridViewImageColumn iconColumn = ny DataGridViewImageColumn ( ) ; iconColumn.Image = treeIcon.ToBitmap ( ) ; iconColumn.Name = " träd " , iconColumn.HeaderText = " Trevlig träd " ; dataGridView1.Columns.Insert ( 2 , iconColumn ) ; }
4
Markera hela koden för att GridView , och tryck på " Delete ".