mirror of
https://github.com/opensim/opensim.git
synced 2026-05-31 14:55:53 +08:00
84 lines
3.1 KiB
C#
84 lines
3.1 KiB
C#
namespace LaunchSLClient
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Items.AddRange(new object[] {
|
|
"Local Sandbox",
|
|
"Local Grid Server",
|
|
"DeepGrid - www.deepgrid.com",
|
|
"OSGrid - www.osgrid.org",
|
|
"Linden Labs - www.secondlife.com"});
|
|
this.comboBox1.Location = new System.Drawing.Point(37, 83);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(348, 21);
|
|
this.comboBox1.TabIndex = 0;
|
|
this.comboBox1.Text = "Choose from list";
|
|
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.textBox1.Location = new System.Drawing.Point(37, 32);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.ReadOnly = true;
|
|
this.textBox1.Size = new System.Drawing.Size(292, 19);
|
|
this.textBox1.TabIndex = 1;
|
|
this.textBox1.Text = "Choose from one of the following:";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(501, 339);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.comboBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "OpenSim Client Launcher";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
|
|
}
|
|
}
|
|
|