PageRenderTime 65ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/VBWinFormDataGridView/CustomDataGridViewColumn/MainForm.Designer.vb

#
Visual Basic | 68 lines | 47 code | 7 blank | 14 comment | 0 complexity | b665e162c2a837a0829db0107baba661 MD5 | raw file
  1. Namespace VBWinFormDataGridView.CustomDataGridViewColumn
  2. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  3. Partial Class MainForm
  4. Inherits System.Windows.Forms.Form
  5. 'Form overrides dispose to clean up the component list.
  6. <System.Diagnostics.DebuggerNonUserCode()> _
  7. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8. Try
  9. If disposing AndAlso components IsNot Nothing Then
  10. components.Dispose()
  11. End If
  12. Finally
  13. MyBase.Dispose(disposing)
  14. End Try
  15. End Sub
  16. 'Required by the Windows Form Designer
  17. Private components As System.ComponentModel.IContainer
  18. 'NOTE: The following procedure is required by the Windows Form Designer
  19. 'It can be modified using the Windows Form Designer.
  20. 'Do not modify it using the code editor.
  21. <System.Diagnostics.DebuggerStepThrough()> _
  22. Private Sub InitializeComponent()
  23. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm))
  24. Me.label2 = New System.Windows.Forms.Label
  25. Me.employeesDataGridView = New System.Windows.Forms.DataGridView
  26. CType(Me.employeesDataGridView, System.ComponentModel.ISupportInitialize).BeginInit()
  27. Me.SuspendLayout()
  28. '
  29. 'label2
  30. '
  31. Me.label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  32. Me.label2.Location = New System.Drawing.Point(27, 24)
  33. Me.label2.Name = "label2"
  34. Me.label2.Size = New System.Drawing.Size(580, 87)
  35. Me.label2.TabIndex = 5
  36. Me.label2.Text = resources.GetString("label2.Text")
  37. '
  38. 'employeesDataGridView
  39. '
  40. Me.employeesDataGridView.Location = New System.Drawing.Point(30, 124)
  41. Me.employeesDataGridView.Name = "employeesDataGridView"
  42. Me.employeesDataGridView.RowTemplate.Height = 21
  43. Me.employeesDataGridView.Size = New System.Drawing.Size(577, 299)
  44. Me.employeesDataGridView.TabIndex = 4
  45. '
  46. 'MainForm
  47. '
  48. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  49. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  50. Me.ClientSize = New System.Drawing.Size(634, 446)
  51. Me.Controls.Add(Me.label2)
  52. Me.Controls.Add(Me.employeesDataGridView)
  53. Me.Name = "MainForm"
  54. Me.Text = "DataGridViewCustomColumn Sample"
  55. CType(Me.employeesDataGridView, System.ComponentModel.ISupportInitialize).EndInit()
  56. Me.ResumeLayout(False)
  57. End Sub
  58. Private WithEvents label2 As System.Windows.Forms.Label
  59. Private WithEvents employeesDataGridView As System.Windows.Forms.DataGridView
  60. End Class
  61. End Namespace