Partial Class frmEntityDesigner 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() Me.PanelMain = New ClientSuite.ControlSnapPanel(Me.components) Me.TabControlMain = New DevExpress.XtraTab.XtraTabControl() Me.TabPageControls = New DevExpress.XtraTab.XtraTabPage() Me.btnCombobox = New System.Windows.Forms.Button() Me.btnTextbox = New System.Windows.Forms.Button() Me.btnLabel = New System.Windows.Forms.Button() Me.TabPageProperties = New DevExpress.XtraTab.XtraTabPage() Me.PropertyGridMain = New DevExpress.XtraVerticalGrid.PropertyGridControl() Me.SplitContainerControlMain = New DevExpress.XtraEditors.SplitContainerControl() Me.Label1 = New System.Windows.Forms.Label() CType(Me.TabControlMain, System.ComponentModel.ISupportInitialize).BeginInit() Me.TabControlMain.SuspendLayout() Me.TabPageControls.SuspendLayout() Me.TabPageProperties.SuspendLayout() CType(Me.PropertyGridMain, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.SplitContainerControlMain, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainerControlMain.SuspendLayout() Me.SuspendLayout() ' 'PanelMain ' Me.PanelMain.AllowDrop = True Me.PanelMain.Dock = System.Windows.Forms.DockStyle.Fill Me.PanelMain.GridSize = 8 Me.PanelMain.Location = New System.Drawing.Point(0, 0) Me.PanelMain.Name = "PanelMain" Me.PanelMain.ShowGrid = True Me.PanelMain.Size = New System.Drawing.Size(564, 450) Me.PanelMain.TabIndex = 0 ' 'TabControlMain ' Me.TabControlMain.Dock = System.Windows.Forms.DockStyle.Fill Me.TabControlMain.Location = New System.Drawing.Point(0, 0) Me.TabControlMain.Name = "TabControlMain" Me.TabControlMain.SelectedTabPage = Me.TabPageControls Me.TabControlMain.Size = New System.Drawing.Size(224, 450) Me.TabControlMain.TabIndex = 0 Me.TabControlMain.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabPageControls, Me.TabPageProperties}) ' 'TabPageControls ' Me.TabPageControls.Controls.Add(Me.Label1) Me.TabPageControls.Controls.Add(Me.btnCombobox) Me.TabPageControls.Controls.Add(Me.btnTextbox) Me.TabPageControls.Controls.Add(Me.btnLabel) Me.TabPageControls.Name = "TabPageControls" Me.TabPageControls.Size = New System.Drawing.Size(222, 425) Me.TabPageControls.Text = "Controls" ' 'btnCombobox ' Me.btnCombobox.Location = New System.Drawing.Point(3, 92) Me.btnCombobox.Name = "btnCombobox" Me.btnCombobox.Size = New System.Drawing.Size(216, 23) Me.btnCombobox.TabIndex = 1 Me.btnCombobox.Text = "Combobox" Me.btnCombobox.UseVisualStyleBackColor = True ' 'btnTextbox ' Me.btnTextbox.Location = New System.Drawing.Point(3, 63) Me.btnTextbox.Name = "btnTextbox" Me.btnTextbox.Size = New System.Drawing.Size(216, 23) Me.btnTextbox.TabIndex = 1 Me.btnTextbox.Text = "Textbox" Me.btnTextbox.UseVisualStyleBackColor = True ' 'btnLabel ' Me.btnLabel.Location = New System.Drawing.Point(3, 34) Me.btnLabel.Name = "btnLabel" Me.btnLabel.Size = New System.Drawing.Size(216, 23) Me.btnLabel.TabIndex = 0 Me.btnLabel.Text = "Label" Me.btnLabel.UseVisualStyleBackColor = True ' 'TabPageProperties ' Me.TabPageProperties.Controls.Add(Me.PropertyGridMain) Me.TabPageProperties.Name = "TabPageProperties" Me.TabPageProperties.Size = New System.Drawing.Size(222, 425) Me.TabPageProperties.Text = "Properties" ' 'PropertyGridMain ' Me.PropertyGridMain.Dock = System.Windows.Forms.DockStyle.Fill Me.PropertyGridMain.Location = New System.Drawing.Point(0, 0) Me.PropertyGridMain.Name = "PropertyGridMain" Me.PropertyGridMain.Size = New System.Drawing.Size(222, 425) Me.PropertyGridMain.TabIndex = 0 ' 'SplitContainerControlMain ' Me.SplitContainerControlMain.Dock = System.Windows.Forms.DockStyle.Fill Me.SplitContainerControlMain.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2 Me.SplitContainerControlMain.Location = New System.Drawing.Point(0, 0) Me.SplitContainerControlMain.Name = "SplitContainerControlMain" Me.SplitContainerControlMain.Panel1.Controls.Add(Me.PanelMain) Me.SplitContainerControlMain.Panel1.Text = "Panel1" Me.SplitContainerControlMain.Panel2.Controls.Add(Me.TabControlMain) Me.SplitContainerControlMain.Panel2.Text = "Panel2" Me.SplitContainerControlMain.Size = New System.Drawing.Size(800, 450) Me.SplitContainerControlMain.SplitterPosition = 224 Me.SplitContainerControlMain.TabIndex = 1 Me.SplitContainerControlMain.Text = "SplitContainerControl1" ' 'Label1 ' Me.Label1.Dock = System.Windows.Forms.DockStyle.Top Me.Label1.Location = New System.Drawing.Point(0, 0) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(222, 31) Me.Label1.TabIndex = 2 Me.Label1.Text = "Ziehen Sie zum Erstellen einen Controll-Button auf das Panel" ' 'frmEntityDesigner ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(800, 450) Me.Controls.Add(Me.SplitContainerControlMain) Me.Name = "frmEntityDesigner" Me.Text = "Entitäten Designer" CType(Me.TabControlMain, System.ComponentModel.ISupportInitialize).EndInit() Me.TabControlMain.ResumeLayout(False) Me.TabPageControls.ResumeLayout(False) Me.TabPageProperties.ResumeLayout(False) CType(Me.PropertyGridMain, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.SplitContainerControlMain, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainerControlMain.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents TabControlMain As DevExpress.XtraTab.XtraTabControl Friend WithEvents TabPageProperties As DevExpress.XtraTab.XtraTabPage Friend WithEvents PropertyGridMain As DevExpress.XtraVerticalGrid.PropertyGridControl Friend WithEvents TabPageControls As DevExpress.XtraTab.XtraTabPage Friend WithEvents PanelMain As ControlSnapPanel Friend WithEvents btnTextbox As Button Friend WithEvents btnLabel As Button Friend WithEvents SplitContainerControlMain As DevExpress.XtraEditors.SplitContainerControl Friend WithEvents btnCombobox As Button Friend WithEvents Label1 As Label End Class