Form1.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. namespace LaunchSLClient
  28. {
  29. partial class Form1
  30. {
  31. /// <summary>
  32. /// Required designer variable.
  33. /// </summary>
  34. private System.ComponentModel.IContainer components = null;
  35. /// <summary>
  36. /// Clean up any resources being used.
  37. /// </summary>
  38. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  39. protected override void Dispose(bool disposing)
  40. {
  41. if (disposing && (components != null))
  42. {
  43. components.Dispose();
  44. }
  45. base.Dispose(disposing);
  46. }
  47. #region Windows Form Designer generated code
  48. /// <summary>
  49. /// Required method for Designer support - do not modify
  50. /// the contents of this method with the code editor.
  51. /// </summary>
  52. private void InitializeComponent()
  53. {
  54. this.comboBox1 = new System.Windows.Forms.ComboBox();
  55. this.textBox1 = new System.Windows.Forms.TextBox();
  56. this.SuspendLayout();
  57. //
  58. // comboBox1
  59. //
  60. this.comboBox1.FormattingEnabled = true;
  61. this.comboBox1.Items.AddRange(new object[] {
  62. "Local Sandbox",
  63. "Local Grid Server",
  64. "DeepGrid - www.deepgrid.com",
  65. "OSGrid - www.osgrid.org",
  66. "Linden Labs - www.secondlife.com"});
  67. this.comboBox1.Location = new System.Drawing.Point(37, 83);
  68. this.comboBox1.Name = "comboBox1";
  69. this.comboBox1.Size = new System.Drawing.Size(348, 21);
  70. this.comboBox1.TabIndex = 0;
  71. this.comboBox1.Text = "Choose from list";
  72. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  73. //
  74. // textBox1
  75. //
  76. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
  77. this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  78. this.textBox1.Location = new System.Drawing.Point(37, 32);
  79. this.textBox1.Name = "textBox1";
  80. this.textBox1.ReadOnly = true;
  81. this.textBox1.Size = new System.Drawing.Size(292, 19);
  82. this.textBox1.TabIndex = 1;
  83. this.textBox1.Text = "Choose from one of the following:";
  84. //
  85. // Form1
  86. //
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89. this.ClientSize = new System.Drawing.Size(501, 339);
  90. this.Controls.Add(this.textBox1);
  91. this.Controls.Add(this.comboBox1);
  92. this.Name = "Form1";
  93. this.Text = "OpenSim Client Launcher";
  94. this.ResumeLayout(false);
  95. this.PerformLayout();
  96. }
  97. #endregion
  98. private System.Windows.Forms.ComboBox comboBox1;
  99. private System.Windows.Forms.TextBox textBox1;
  100. }
  101. }