Background.Designer.vb 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Background
  3. Inherits System.Windows.Forms.Form
  4. 'Form overrides dispose to clean up the component list.
  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. 'Required by the Windows Form Designer
  16. Private components As System.ComponentModel.IContainer
  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.components = New System.ComponentModel.Container()
  23. Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
  24. Me.Panel1 = New System.Windows.Forms.Panel()
  25. Me.Panel2 = New System.Windows.Forms.Panel()
  26. Me.SuspendLayout()
  27. '
  28. 'Timer1
  29. '
  30. Me.Timer1.Enabled = True
  31. Me.Timer1.Interval = 5000
  32. '
  33. 'Panel1
  34. '
  35. Me.Panel1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  36. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  37. Me.Panel1.BackColor = System.Drawing.SystemColors.ActiveCaptionText
  38. Me.Panel1.Location = New System.Drawing.Point(12, 12)
  39. Me.Panel1.Name = "Panel1"
  40. Me.Panel1.Size = New System.Drawing.Size(227, 480)
  41. Me.Panel1.TabIndex = 0
  42. '
  43. 'Panel2
  44. '
  45. Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  46. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  47. Me.Panel2.BackColor = System.Drawing.SystemColors.ActiveCaptionText
  48. Me.Panel2.Location = New System.Drawing.Point(385, 12)
  49. Me.Panel2.Name = "Panel2"
  50. Me.Panel2.Size = New System.Drawing.Size(227, 480)
  51. Me.Panel2.TabIndex = 1
  52. '
  53. 'Background
  54. '
  55. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
  56. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  57. Me.BackColor = System.Drawing.SystemColors.ActiveCaptionText
  58. Me.ClientSize = New System.Drawing.Size(624, 504)
  59. Me.Controls.Add(Me.Panel2)
  60. Me.Controls.Add(Me.Panel1)
  61. Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
  62. Me.Name = "Background"
  63. Me.Text = "Background"
  64. Me.ResumeLayout(False)
  65. End Sub
  66. Friend WithEvents Timer1 As Timer
  67. Friend WithEvents Panel1 As Panel
  68. Friend WithEvents Panel2 As Panel
  69. End Class