_ Partial Class frmFileRename 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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmFileRename)) Me.lblType = New System.Windows.Forms.Label() Me.lblCapt = New System.Windows.Forms.Label() Me.txtNewName = New System.Windows.Forms.TextBox() Me.lblOldFilename = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.SimpleButton1 = New DevExpress.XtraEditors.SimpleButton() Me.SuspendLayout() ' 'lblType ' Me.lblType.AutoSize = True Me.lblType.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblType.Location = New System.Drawing.Point(34, 9) Me.lblType.Name = "lblType" Me.lblType.Size = New System.Drawing.Size(49, 16) Me.lblType.TabIndex = 0 Me.lblType.Text = "Label1" ' 'lblCapt ' Me.lblCapt.AutoSize = True Me.lblCapt.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblCapt.Location = New System.Drawing.Point(34, 41) Me.lblCapt.Name = "lblCapt" Me.lblCapt.Size = New System.Drawing.Size(94, 16) Me.lblCapt.TabIndex = 1 Me.lblCapt.Text = "Aktueller Name" ' 'txtNewName ' Me.txtNewName.Location = New System.Drawing.Point(140, 74) Me.txtNewName.Name = "txtNewName" Me.txtNewName.Size = New System.Drawing.Size(304, 21) Me.txtNewName.TabIndex = 2 ' 'lblOldFilename ' Me.lblOldFilename.AutoSize = True Me.lblOldFilename.Location = New System.Drawing.Point(137, 44) Me.lblOldFilename.Name = "lblOldFilename" Me.lblOldFilename.Size = New System.Drawing.Size(75, 13) Me.lblOldFilename.TabIndex = 3 Me.lblOldFilename.Text = "lblOldFilename" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.Location = New System.Drawing.Point(34, 75) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(78, 16) Me.Label2.TabIndex = 4 Me.Label2.Text = "Neuer Name" ' 'SimpleButton1 ' Me.SimpleButton1.ImageOptions.SvgImage = CType(resources.GetObject("SimpleButton1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage) Me.SimpleButton1.Location = New System.Drawing.Point(37, 101) Me.SimpleButton1.Name = "SimpleButton1" Me.SimpleButton1.Size = New System.Drawing.Size(407, 39) Me.SimpleButton1.TabIndex = 5 Me.SimpleButton1.Text = "Datei umbenennen" ' 'frmFileRename ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(471, 150) Me.Controls.Add(Me.SimpleButton1) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.lblOldFilename) Me.Controls.Add(Me.txtNewName) Me.Controls.Add(Me.lblCapt) Me.Controls.Add(Me.lblType) Me.IconOptions.SvgImage = CType(resources.GetObject("frmFileRename.IconOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmFileRename" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Datei umbenennen" Me.TopMost = True Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents lblType As Label Friend WithEvents lblCapt As Label Friend WithEvents txtNewName As TextBox Friend WithEvents lblOldFilename As Label Friend WithEvents Label2 As Label Friend WithEvents SimpleButton1 As DevExpress.XtraEditors.SimpleButton End Class