ServerUI.Designer.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. namespace SMBServer
  2. {
  3. partial class ServerUI
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.comboIPAddress = new System.Windows.Forms.ComboBox();
  29. this.rbtNetBiosOverTCP = new System.Windows.Forms.RadioButton();
  30. this.rbtDirectTCPTransport = new System.Windows.Forms.RadioButton();
  31. this.btnStart = new System.Windows.Forms.Button();
  32. this.btnStop = new System.Windows.Forms.Button();
  33. this.lblTransport = new System.Windows.Forms.Label();
  34. this.lblAddress = new System.Windows.Forms.Label();
  35. this.chkIntegratedWindowsAuthentication = new System.Windows.Forms.CheckBox();
  36. this.SuspendLayout();
  37. //
  38. // comboIPAddress
  39. //
  40. this.comboIPAddress.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  41. this.comboIPAddress.FormattingEnabled = true;
  42. this.comboIPAddress.Location = new System.Drawing.Point(79, 6);
  43. this.comboIPAddress.Name = "comboIPAddress";
  44. this.comboIPAddress.Size = new System.Drawing.Size(121, 21);
  45. this.comboIPAddress.TabIndex = 0;
  46. //
  47. // rbtNetBiosOverTCP
  48. //
  49. this.rbtNetBiosOverTCP.AutoSize = true;
  50. this.rbtNetBiosOverTCP.Checked = true;
  51. this.rbtNetBiosOverTCP.Location = new System.Drawing.Point(79, 41);
  52. this.rbtNetBiosOverTCP.Name = "rbtNetBiosOverTCP";
  53. this.rbtNetBiosOverTCP.Size = new System.Drawing.Size(164, 17);
  54. this.rbtNetBiosOverTCP.TabIndex = 2;
  55. this.rbtNetBiosOverTCP.TabStop = true;
  56. this.rbtNetBiosOverTCP.Text = "NetBIOS over TCP (Port 139)";
  57. this.rbtNetBiosOverTCP.UseVisualStyleBackColor = true;
  58. //
  59. // rbtDirectTCPTransport
  60. //
  61. this.rbtDirectTCPTransport.AutoSize = true;
  62. this.rbtDirectTCPTransport.Location = new System.Drawing.Point(79, 64);
  63. this.rbtDirectTCPTransport.Name = "rbtDirectTCPTransport";
  64. this.rbtDirectTCPTransport.Size = new System.Drawing.Size(174, 17);
  65. this.rbtDirectTCPTransport.TabIndex = 3;
  66. this.rbtDirectTCPTransport.Text = "Direct TCP Transport (Port 445)";
  67. this.rbtDirectTCPTransport.UseVisualStyleBackColor = true;
  68. //
  69. // btnStart
  70. //
  71. this.btnStart.Location = new System.Drawing.Point(339, 9);
  72. this.btnStart.Name = "btnStart";
  73. this.btnStart.Size = new System.Drawing.Size(91, 23);
  74. this.btnStart.TabIndex = 4;
  75. this.btnStart.Text = "Start";
  76. this.btnStart.UseVisualStyleBackColor = true;
  77. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  78. //
  79. // btnStop
  80. //
  81. this.btnStop.Enabled = false;
  82. this.btnStop.Location = new System.Drawing.Point(339, 38);
  83. this.btnStop.Name = "btnStop";
  84. this.btnStop.Size = new System.Drawing.Size(91, 23);
  85. this.btnStop.TabIndex = 5;
  86. this.btnStop.Text = "Stop";
  87. this.btnStop.UseVisualStyleBackColor = true;
  88. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  89. //
  90. // lblTransport
  91. //
  92. this.lblTransport.AutoSize = true;
  93. this.lblTransport.Location = new System.Drawing.Point(12, 43);
  94. this.lblTransport.Name = "lblTransport";
  95. this.lblTransport.Size = new System.Drawing.Size(55, 13);
  96. this.lblTransport.TabIndex = 14;
  97. this.lblTransport.Text = "Transport:";
  98. //
  99. // lblAddress
  100. //
  101. this.lblAddress.AutoSize = true;
  102. this.lblAddress.Location = new System.Drawing.Point(12, 9);
  103. this.lblAddress.Name = "lblAddress";
  104. this.lblAddress.Size = new System.Drawing.Size(61, 13);
  105. this.lblAddress.TabIndex = 13;
  106. this.lblAddress.Text = "IP Address:";
  107. //
  108. // chkIntegratedWindowsAuthentication
  109. //
  110. this.chkIntegratedWindowsAuthentication.AutoSize = true;
  111. this.chkIntegratedWindowsAuthentication.Checked = true;
  112. this.chkIntegratedWindowsAuthentication.CheckState = System.Windows.Forms.CheckState.Checked;
  113. this.chkIntegratedWindowsAuthentication.Location = new System.Drawing.Point(79, 94);
  114. this.chkIntegratedWindowsAuthentication.Name = "chkIntegratedWindowsAuthentication";
  115. this.chkIntegratedWindowsAuthentication.Size = new System.Drawing.Size(192, 17);
  116. this.chkIntegratedWindowsAuthentication.TabIndex = 15;
  117. this.chkIntegratedWindowsAuthentication.Text = "Integrated Windows Authentication";
  118. this.chkIntegratedWindowsAuthentication.UseVisualStyleBackColor = true;
  119. //
  120. // ServerUI
  121. //
  122. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  123. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  124. this.ClientSize = new System.Drawing.Size(442, 123);
  125. this.Controls.Add(this.chkIntegratedWindowsAuthentication);
  126. this.Controls.Add(this.lblTransport);
  127. this.Controls.Add(this.lblAddress);
  128. this.Controls.Add(this.btnStop);
  129. this.Controls.Add(this.btnStart);
  130. this.Controls.Add(this.rbtDirectTCPTransport);
  131. this.Controls.Add(this.rbtNetBiosOverTCP);
  132. this.Controls.Add(this.comboIPAddress);
  133. this.MaximizeBox = false;
  134. this.MaximumSize = new System.Drawing.Size(450, 150);
  135. this.MinimumSize = new System.Drawing.Size(450, 150);
  136. this.Name = "ServerUI";
  137. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  138. this.Text = "SMB Server";
  139. this.Load += new System.EventHandler(this.ServerUI_Load);
  140. this.ResumeLayout(false);
  141. this.PerformLayout();
  142. }
  143. #endregion
  144. private System.Windows.Forms.ComboBox comboIPAddress;
  145. private System.Windows.Forms.RadioButton rbtNetBiosOverTCP;
  146. private System.Windows.Forms.RadioButton rbtDirectTCPTransport;
  147. private System.Windows.Forms.Button btnStart;
  148. private System.Windows.Forms.Button btnStop;
  149. private System.Windows.Forms.Label lblTransport;
  150. private System.Windows.Forms.Label lblAddress;
  151. private System.Windows.Forms.CheckBox chkIntegratedWindowsAuthentication;
  152. }
  153. }