ucInputField.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. namespace OpenSim.GridLaunch.GUI.WinForm
  2. {
  3. partial class ucInputField
  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 Component 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.txtInput = new System.Windows.Forms.TextBox();
  29. this.btnSend = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // txtInput
  33. //
  34. this.txtInput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  35. | System.Windows.Forms.AnchorStyles.Left)
  36. | System.Windows.Forms.AnchorStyles.Right)));
  37. this.txtInput.Location = new System.Drawing.Point(3, 2);
  38. this.txtInput.Name = "txtInput";
  39. this.txtInput.Size = new System.Drawing.Size(289, 20);
  40. this.txtInput.TabIndex = 0;
  41. this.txtInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtInput_KeyPress);
  42. //
  43. // btnSend
  44. //
  45. this.btnSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  46. this.btnSend.Location = new System.Drawing.Point(295, 0);
  47. this.btnSend.Name = "btnSend";
  48. this.btnSend.Size = new System.Drawing.Size(75, 23);
  49. this.btnSend.TabIndex = 3;
  50. this.btnSend.Text = "&Send";
  51. this.btnSend.UseVisualStyleBackColor = true;
  52. this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
  53. //
  54. // ucInputField
  55. //
  56. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  57. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  58. this.Controls.Add(this.btnSend);
  59. this.Controls.Add(this.txtInput);
  60. this.Name = "ucInputField";
  61. this.Size = new System.Drawing.Size(373, 25);
  62. this.Load += new System.EventHandler(this.ucInputField_Load);
  63. this.Resize += new System.EventHandler(this.ucInputField_Resize);
  64. this.ResumeLayout(false);
  65. this.PerformLayout();
  66. }
  67. #endregion
  68. private System.Windows.Forms.TextBox txtInput;
  69. private System.Windows.Forms.Button btnSend;
  70. }
  71. }