frmBuscarDeLista.designer.vb 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class frmBuscarDeLista
  3. Inherits System.Windows.Forms.Form
  4. 'Form reemplaza a Dispose para limpiar la lista de componentes.
  5. <System.Diagnostics.DebuggerNonUserCode()>
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. 'Requerido por el Diseñador de Windows Forms
  16. Private components As System.ComponentModel.IContainer
  17. 'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
  18. 'Se puede modificar usando el Diseñador de Windows Forms.
  19. 'No lo modifique con el editor de código.
  20. <System.Diagnostics.DebuggerStepThrough()>
  21. Private Sub InitializeComponent()
  22. Me.dgvBuscarDeLista = New System.Windows.Forms.DataGridView()
  23. Me.btnAceptar = New System.Windows.Forms.Button()
  24. Me.btnCancelar = New System.Windows.Forms.Button()
  25. Me.FlowLayoutPanel1 = New System.Windows.Forms.FlowLayoutPanel()
  26. Me.Panel1 = New System.Windows.Forms.Panel()
  27. CType(Me.dgvBuscarDeLista, System.ComponentModel.ISupportInitialize).BeginInit()
  28. Me.FlowLayoutPanel1.SuspendLayout()
  29. Me.Panel1.SuspendLayout()
  30. Me.SuspendLayout()
  31. '
  32. 'dgvBuscarDeLista
  33. '
  34. Me.dgvBuscarDeLista.AllowUserToAddRows = False
  35. Me.dgvBuscarDeLista.AllowUserToDeleteRows = False
  36. Me.dgvBuscarDeLista.AllowUserToOrderColumns = True
  37. Me.dgvBuscarDeLista.BackgroundColor = System.Drawing.Color.White
  38. Me.dgvBuscarDeLista.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  39. Me.dgvBuscarDeLista.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  40. Me.dgvBuscarDeLista.Dock = System.Windows.Forms.DockStyle.Fill
  41. Me.dgvBuscarDeLista.Location = New System.Drawing.Point(0, 0)
  42. Me.dgvBuscarDeLista.MultiSelect = False
  43. Me.dgvBuscarDeLista.Name = "dgvBuscarDeLista"
  44. Me.dgvBuscarDeLista.ReadOnly = True
  45. Me.dgvBuscarDeLista.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
  46. Me.dgvBuscarDeLista.Size = New System.Drawing.Size(599, 226)
  47. Me.dgvBuscarDeLista.TabIndex = 0
  48. '
  49. 'btnAceptar
  50. '
  51. Me.btnAceptar.BackColor = System.Drawing.Color.White
  52. Me.btnAceptar.DialogResult = System.Windows.Forms.DialogResult.OK
  53. Me.btnAceptar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  54. Me.btnAceptar.ForeColor = System.Drawing.Color.Maroon
  55. Me.btnAceptar.Location = New System.Drawing.Point(3, 3)
  56. Me.btnAceptar.Name = "btnAceptar"
  57. Me.btnAceptar.Size = New System.Drawing.Size(75, 23)
  58. Me.btnAceptar.TabIndex = 1
  59. Me.btnAceptar.Text = "Aceptar"
  60. Me.btnAceptar.UseVisualStyleBackColor = False
  61. '
  62. 'btnCancelar
  63. '
  64. Me.btnCancelar.BackColor = System.Drawing.Color.White
  65. Me.btnCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  66. Me.btnCancelar.ForeColor = System.Drawing.Color.Maroon
  67. Me.btnCancelar.Location = New System.Drawing.Point(84, 3)
  68. Me.btnCancelar.Name = "btnCancelar"
  69. Me.btnCancelar.Size = New System.Drawing.Size(75, 23)
  70. Me.btnCancelar.TabIndex = 2
  71. Me.btnCancelar.Text = "Cancelar"
  72. Me.btnCancelar.UseVisualStyleBackColor = False
  73. '
  74. 'FlowLayoutPanel1
  75. '
  76. Me.FlowLayoutPanel1.BackColor = System.Drawing.Color.WhiteSmoke
  77. Me.FlowLayoutPanel1.Controls.Add(Me.btnAceptar)
  78. Me.FlowLayoutPanel1.Controls.Add(Me.btnCancelar)
  79. Me.FlowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom
  80. Me.FlowLayoutPanel1.Location = New System.Drawing.Point(0, 226)
  81. Me.FlowLayoutPanel1.Name = "FlowLayoutPanel1"
  82. Me.FlowLayoutPanel1.Size = New System.Drawing.Size(599, 55)
  83. Me.FlowLayoutPanel1.TabIndex = 3
  84. '
  85. 'Panel1
  86. '
  87. Me.Panel1.Controls.Add(Me.dgvBuscarDeLista)
  88. Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill
  89. Me.Panel1.Location = New System.Drawing.Point(0, 0)
  90. Me.Panel1.Name = "Panel1"
  91. Me.Panel1.Size = New System.Drawing.Size(599, 226)
  92. Me.Panel1.TabIndex = 4
  93. '
  94. 'frmBuscarDeLista
  95. '
  96. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  97. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  98. Me.ClientSize = New System.Drawing.Size(599, 281)
  99. Me.Controls.Add(Me.Panel1)
  100. Me.Controls.Add(Me.FlowLayoutPanel1)
  101. Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
  102. Me.Name = "frmBuscarDeLista"
  103. Me.Text = "frmBuscarDeLista"
  104. CType(Me.dgvBuscarDeLista, System.ComponentModel.ISupportInitialize).EndInit()
  105. Me.FlowLayoutPanel1.ResumeLayout(False)
  106. Me.Panel1.ResumeLayout(False)
  107. Me.ResumeLayout(False)
  108. End Sub
  109. Friend WithEvents dgvBuscarDeLista As DataGridView
  110. Friend WithEvents btnAceptar As Button
  111. Friend WithEvents btnCancelar As Button
  112. Friend WithEvents FlowLayoutPanel1 As FlowLayoutPanel
  113. Friend WithEvents Panel1 As Panel
  114. End Class