ServerForm.Designer.vb 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class ServerForm
  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.ToolStrip1 = New System.Windows.Forms.ToolStrip()
  23. Me.ToolStripLabel1 = New System.Windows.Forms.ToolStripLabel()
  24. Me.PortTextBox = New System.Windows.Forms.ToolStripTextBox()
  25. Me.RichTextBox1 = New System.Windows.Forms.RichTextBox()
  26. Me.StartStopButton = New System.Windows.Forms.ToolStripButton()
  27. Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
  28. Me.ConnectionCountLabel = New System.Windows.Forms.ToolStripStatusLabel()
  29. Me.ToolStrip1.SuspendLayout()
  30. Me.StatusStrip1.SuspendLayout()
  31. Me.SuspendLayout()
  32. '
  33. 'ToolStrip1
  34. '
  35. Me.ToolStrip1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  36. Me.ToolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden
  37. Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel1, Me.PortTextBox, Me.StartStopButton})
  38. Me.ToolStrip1.Location = New System.Drawing.Point(0, 0)
  39. Me.ToolStrip1.Name = "ToolStrip1"
  40. Me.ToolStrip1.Padding = New System.Windows.Forms.Padding(4, 0, 1, 0)
  41. Me.ToolStrip1.Size = New System.Drawing.Size(331, 25)
  42. Me.ToolStrip1.TabIndex = 1
  43. Me.ToolStrip1.Text = "ToolStrip1"
  44. '
  45. 'ToolStripLabel1
  46. '
  47. Me.ToolStripLabel1.Name = "ToolStripLabel1"
  48. Me.ToolStripLabel1.Size = New System.Drawing.Size(35, 22)
  49. Me.ToolStripLabel1.Text = "Port:"
  50. '
  51. 'PortTextBox
  52. '
  53. Me.PortTextBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  54. Me.PortTextBox.Name = "PortTextBox"
  55. Me.PortTextBox.Size = New System.Drawing.Size(64, 25)
  56. Me.PortTextBox.Text = "1314"
  57. Me.PortTextBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center
  58. '
  59. 'RichTextBox1
  60. '
  61. Me.RichTextBox1.Dock = System.Windows.Forms.DockStyle.Fill
  62. Me.RichTextBox1.Location = New System.Drawing.Point(0, 25)
  63. Me.RichTextBox1.Name = "RichTextBox1"
  64. Me.RichTextBox1.ReadOnly = True
  65. Me.RichTextBox1.Size = New System.Drawing.Size(331, 296)
  66. Me.RichTextBox1.TabIndex = 2
  67. Me.RichTextBox1.Text = ""
  68. '
  69. 'StartStopButton
  70. '
  71. Me.StartStopButton.CheckOnClick = True
  72. Me.StartStopButton.Image = Global.WindowsApplication1.My.Resources.Resources.StartServer
  73. Me.StartStopButton.ImageTransparentColor = System.Drawing.Color.Magenta
  74. Me.StartStopButton.Name = "StartStopButton"
  75. Me.StartStopButton.Size = New System.Drawing.Size(55, 22)
  76. Me.StartStopButton.Text = "Start"
  77. '
  78. 'StatusStrip1
  79. '
  80. Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ConnectionCountLabel})
  81. Me.StatusStrip1.Location = New System.Drawing.Point(0, 321)
  82. Me.StatusStrip1.Name = "StatusStrip1"
  83. Me.StatusStrip1.Size = New System.Drawing.Size(331, 22)
  84. Me.StatusStrip1.TabIndex = 3
  85. Me.StatusStrip1.Text = "StatusStrip1"
  86. '
  87. 'ConnectionCountLabel
  88. '
  89. Me.ConnectionCountLabel.Name = "ConnectionCountLabel"
  90. Me.ConnectionCountLabel.Size = New System.Drawing.Size(68, 17)
  91. Me.ConnectionCountLabel.Text = "0 Connections"
  92. '
  93. 'ServerForm
  94. '
  95. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
  96. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  97. Me.ClientSize = New System.Drawing.Size(331, 343)
  98. Me.Controls.Add(Me.RichTextBox1)
  99. Me.Controls.Add(Me.StatusStrip1)
  100. Me.Controls.Add(Me.ToolStrip1)
  101. Me.Font = New System.Drawing.Font("Segoe UI", 9.75!)
  102. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  103. Me.Name = "ServerForm"
  104. Me.Text = "Server"
  105. Me.ToolStrip1.ResumeLayout(False)
  106. Me.ToolStrip1.PerformLayout()
  107. Me.StatusStrip1.ResumeLayout(False)
  108. Me.StatusStrip1.PerformLayout()
  109. Me.ResumeLayout(False)
  110. Me.PerformLayout()
  111. End Sub
  112. Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip
  113. Friend WithEvents ToolStripLabel1 As System.Windows.Forms.ToolStripLabel
  114. Friend WithEvents PortTextBox As System.Windows.Forms.ToolStripTextBox
  115. Friend WithEvents StartStopButton As System.Windows.Forms.ToolStripButton
  116. Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox
  117. Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip
  118. Friend WithEvents ConnectionCountLabel As System.Windows.Forms.ToolStripStatusLabel
  119. End Class