_ Partial Class frmDienstAuswahl Inherits System.Windows.Forms.Form '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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmDienstAuswahl)) Me.pnl = New System.Windows.Forms.Panel() Me.DataGridView = New System.Windows.Forms.DataGridView() Me.column = New System.Windows.Forms.DataGridViewTextBoxColumn() Me.clmnId = New System.Windows.Forms.DataGridViewTextBoxColumn() Me.pnl.SuspendLayout() CType(Me.DataGridView, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'pnl ' Me.pnl.Controls.Add(Me.DataGridView) Me.pnl.Dock = System.Windows.Forms.DockStyle.Fill Me.pnl.Location = New System.Drawing.Point(0, 0) Me.pnl.Name = "pnl" Me.pnl.Size = New System.Drawing.Size(218, 171) Me.pnl.TabIndex = 0 ' 'DataGridView ' Me.DataGridView.AllowUserToAddRows = False Me.DataGridView.AllowUserToDeleteRows = False Me.DataGridView.AllowUserToResizeColumns = False Me.DataGridView.AllowUserToResizeRows = False Me.DataGridView.BackgroundColor = System.Drawing.Color.White Me.DataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.DataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.column, Me.clmnId}) Me.DataGridView.Dock = System.Windows.Forms.DockStyle.Fill Me.DataGridView.GridColor = System.Drawing.Color.Gray Me.DataGridView.Location = New System.Drawing.Point(0, 0) Me.DataGridView.MultiSelect = False Me.DataGridView.Name = "DataGridView" Me.DataGridView.ReadOnly = True Me.DataGridView.RowHeadersVisible = False Me.DataGridView.Size = New System.Drawing.Size(218, 171) Me.DataGridView.TabIndex = 0 ' 'column ' Me.column.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill Me.column.HeaderText = "Eintrag" Me.column.Name = "column" Me.column.ReadOnly = True ' 'clmnId ' Me.clmnId.HeaderText = "id" Me.clmnId.Name = "clmnId" Me.clmnId.ReadOnly = True Me.clmnId.Visible = False ' 'frmDienstAuswahl ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.AutoSize = True Me.ClientSize = New System.Drawing.Size(218, 171) Me.Controls.Add(Me.pnl) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "frmDienstAuswahl" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.pnl.ResumeLayout(False) CType(Me.DataGridView, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents pnl As System.Windows.Forms.Panel Friend WithEvents DataGridView As System.Windows.Forms.DataGridView Friend WithEvents column As System.Windows.Forms.DataGridViewTextBoxColumn Friend WithEvents clmnId As System.Windows.Forms.DataGridViewTextBoxColumn End Class