Add Search & Home Form + Attached Panels

This commit is contained in:
Jonathan Jenne
2019-03-07 16:45:30 +01:00
parent 4a7f0cd85d
commit 3ee971fd14
15 changed files with 850 additions and 326 deletions

View File

@@ -0,0 +1,17 @@
Imports DevExpress.XtraEditors.Controls
Public Class frmSearch
Private Sub frmSearch_Load(sender As Object, e As EventArgs) Handles Me.Load
Dim oList As New List(Of String) From {"Marvin", "Marlon", "Annette", "Jan", "Jonathan", "Vladimir", "Armin"}
For Each oMember In oList
Dim oItem As New ImageListBoxItem(oMember, oMember)
ImageListBoxControl1.Items.Add(oItem)
Next
End Sub
End Class