Form1.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSim Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. *
  27. */
  28. namespace LaunchSLClient
  29. {
  30. partial class Form1
  31. {
  32. /// <summary>
  33. /// Required designer variable.
  34. /// </summary>
  35. private System.ComponentModel.IContainer components = null;
  36. /// <summary>
  37. /// Clean up any resources being used.
  38. /// </summary>
  39. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  40. protected override void Dispose(bool disposing)
  41. {
  42. if (disposing && (components != null))
  43. {
  44. components.Dispose();
  45. }
  46. base.Dispose(disposing);
  47. }
  48. #region Windows Form Designer generated code
  49. /// <summary>
  50. /// Required method for Designer support - do not modify
  51. /// the contents of this method with the code editor.
  52. /// </summary>
  53. private void InitializeComponent()
  54. {
  55. this.comboBox1 = new System.Windows.Forms.ComboBox();
  56. this.textBox1 = new System.Windows.Forms.TextBox();
  57. this.SuspendLayout();
  58. //
  59. // comboBox1
  60. //
  61. this.comboBox1.FormattingEnabled = true;
  62. this.comboBox1.Items.AddRange(new object[] {
  63. "Local Sandbox",
  64. "Local Grid Server",
  65. "DeepGrid - www.deepgrid.com",
  66. "OSGrid - www.osgrid.org",
  67. "Linden Labs - www.secondlife.com"});
  68. this.comboBox1.Location = new System.Drawing.Point(37, 83);
  69. this.comboBox1.Name = "comboBox1";
  70. this.comboBox1.Size = new System.Drawing.Size(348, 21);
  71. this.comboBox1.TabIndex = 0;
  72. this.comboBox1.Text = "Choose from list";
  73. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  74. //
  75. // textBox1
  76. //
  77. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
  78. this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  79. this.textBox1.Location = new System.Drawing.Point(37, 32);
  80. this.textBox1.Name = "textBox1";
  81. this.textBox1.ReadOnly = true;
  82. this.textBox1.Size = new System.Drawing.Size(292, 19);
  83. this.textBox1.TabIndex = 1;
  84. this.textBox1.Text = "Choose from one of the following:";
  85. //
  86. // Form1
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(501, 339);
  91. this.Controls.Add(this.textBox1);
  92. this.Controls.Add(this.comboBox1);
  93. this.Name = "Form1";
  94. this.Text = "OpenSim Client Launcher";
  95. this.ResumeLayout(false);
  96. this.PerformLayout();
  97. }
  98. #endregion
  99. private System.Windows.Forms.ComboBox comboBox1;
  100. private System.Windows.Forms.TextBox textBox1;
  101. }
  102. }