Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
HTML IntelliSense 1.5 - CreateNameDialog.Designer.vb

CreateNameDialog.Designer.vb

Caricato da: Totem
Scarica il programma completo

  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class CreateNameDialog
  3.     Inherits System.Windows.Forms.Form
  4.  
  5.     'Form overrides dispose to clean up the component list.
  6.     <System.Diagnostics.DebuggerNonUserCode()> _
  7.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8.         If disposing AndAlso components IsNot Nothing Then
  9.             components.Dispose()
  10.         End If
  11.         MyBase.Dispose(disposing)
  12.     End Sub
  13.  
  14.     'Required by the Windows Form Designer
  15.     Private components As System.ComponentModel.IContainer
  16.  
  17.     'NOTE: The following procedure is required by the Windows Form Designer
  18.     'It can be modified using the Windows Form Designer.  
  19.     'Do not modify it using the code editor.
  20.     <System.Diagnostics.DebuggerStepThrough()> _
  21.     Private Sub InitializeComponent()
  22.         Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel
  23.         Me.OK_Button = New System.Windows.Forms.Button
  24.         Me.Cancel_Button = New System.Windows.Forms.Button
  25.         Me.Label1 = New System.Windows.Forms.Label
  26.         Me.txtName = New System.Windows.Forms.TextBox
  27.         Me.TableLayoutPanel1.SuspendLayout()
  28.         Me.SuspendLayout()
  29.         '
  30.         'TableLayoutPanel1
  31.         '
  32.         Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  33.         Me.TableLayoutPanel1.ColumnCount = 2
  34.         Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
  35.         Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
  36.         Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 0)
  37.         Me.TableLayoutPanel1.Controls.Add(Me.Cancel_Button, 1, 0)
  38.         Me.TableLayoutPanel1.Location = New System.Drawing.Point(179, 71)
  39.         Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
  40.         Me.TableLayoutPanel1.RowCount = 1
  41.         Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
  42.         Me.TableLayoutPanel1.Size = New System.Drawing.Size(146, 29)
  43.         Me.TableLayoutPanel1.TabIndex = 0
  44.         '
  45.         'OK_Button
  46.         '
  47.         Me.OK_Button.Anchor = System.Windows.Forms.AnchorStyles.None
  48.         Me.OK_Button.Location = New System.Drawing.Point(3, 3)
  49.         Me.OK_Button.Name = "OK_Button"
  50.         Me.OK_Button.Size = New System.Drawing.Size(67, 23)
  51.         Me.OK_Button.TabIndex = 0
  52.         Me.OK_Button.Text = "OK"
  53.         '
  54.         'Cancel_Button
  55.         '
  56.         Me.Cancel_Button.Anchor = System.Windows.Forms.AnchorStyles.None
  57.         Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel
  58.         Me.Cancel_Button.Location = New System.Drawing.Point(76, 3)
  59.         Me.Cancel_Button.Name = "Cancel_Button"
  60.         Me.Cancel_Button.Size = New System.Drawing.Size(67, 23)
  61.         Me.Cancel_Button.TabIndex = 1
  62.         Me.Cancel_Button.Text = "Annulla"
  63.         '
  64.         'Label1
  65.         '
  66.         Me.Label1.AutoSize = True
  67.         Me.Label1.Location = New System.Drawing.Point(9, 9)
  68.         Me.Label1.Name = "Label1"
  69.         Me.Label1.Size = New System.Drawing.Size(271, 13)
  70.         Me.Label1.TabIndex = 1
  71.         Me.Label1.Text = "Inserisci il nome del nuovo attributo (solo lettere/numeri):"
  72.         '
  73.         'txtName
  74.         '
  75.         Me.txtName.Location = New System.Drawing.Point(12, 36)
  76.         Me.txtName.Name = "txtName"
  77.         Me.txtName.Size = New System.Drawing.Size(313, 20)
  78.         Me.txtName.TabIndex = 2
  79.         '
  80.         'CreateNameDialog
  81.         '
  82.         Me.AcceptButton = Me.OK_Button
  83.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  84.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  85.         Me.CancelButton = Me.Cancel_Button
  86.         Me.ClientSize = New System.Drawing.Size(337, 112)
  87.         Me.Controls.Add(Me.txtName)
  88.         Me.Controls.Add(Me.Label1)
  89.         Me.Controls.Add(Me.TableLayoutPanel1)
  90.         Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
  91.         Me.MaximizeBox = False
  92.         Me.MinimizeBox = False
  93.         Me.Name = "CreateNameDialog"
  94.         Me.ShowInTaskbar = False
  95.         Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
  96.         Me.Text = "Nuovo attributo"
  97.         Me.TableLayoutPanel1.ResumeLayout(False)
  98.         Me.ResumeLayout(False)
  99.         Me.PerformLayout()
  100.  
  101.     End Sub
  102.     Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
  103.     Friend WithEvents OK_Button As System.Windows.Forms.Button
  104.     Friend WithEvents Cancel_Button As System.Windows.Forms.Button
  105.     Friend WithEvents Label1 As System.Windows.Forms.Label
  106.     Friend WithEvents txtName As System.Windows.Forms.TextBox
  107.  
  108. End Class