_ Partial Class frmTreeView Inherits DevExpress.XtraEditors.XtraForm 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Wird vom Windows Form-Designer benötigt. Private components As System.ComponentModel.IContainer 'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich. 'Das Bearbeiten ist mit dem Windows Form-Designer möglich. 'Das Bearbeiten mit dem Code-Editor ist nicht möglich. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmTreeView)) Me.tvProfileMatch = New System.Windows.Forms.TreeView() Me.ImageList1 = New System.Windows.Forms.ImageList(Me.components) Me.SuspendLayout() ' 'tvProfileMatch ' resources.ApplyResources(Me.tvProfileMatch, "tvProfileMatch") Me.tvProfileMatch.ImageList = Me.ImageList1 Me.tvProfileMatch.Name = "tvProfileMatch" ' 'ImageList1 ' Me.ImageList1.ImageStream = CType(resources.GetObject("ImageList1.ImageStream"), System.Windows.Forms.ImageListStreamer) Me.ImageList1.TransparentColor = System.Drawing.Color.Transparent Me.ImageList1.Images.SetKeyName(0, "root.png") Me.ImageList1.Images.SetKeyName(1, "profile.png") Me.ImageList1.Images.SetKeyName(2, "clipboard.png") Me.ImageList1.Images.SetKeyName(3, "process.png") Me.ImageList1.Images.SetKeyName(4, "window.png") Me.ImageList1.Images.SetKeyName(5, "control.png") ' 'frmTreeView ' resources.ApplyResources(Me, "$this") Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.Controls.Add(Me.tvProfileMatch) Me.IconOptions.ShowIcon = False Me.Name = "frmTreeView" Me.ResumeLayout(False) End Sub Friend WithEvents tvProfileMatch As System.Windows.Forms.TreeView Friend WithEvents ImageList1 As System.Windows.Forms.ImageList End Class