mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
109 lines
No EOL
5.1 KiB
C#
109 lines
No EOL
5.1 KiB
C#
namespace FSO.IDE.ResourceBrowser
|
|
{
|
|
partial class SelectTreeDialog
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectTreeDialog));
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.SearchBox = new System.Windows.Forms.TextBox();
|
|
this.PrimitiveList = new System.Windows.Forms.ListBox();
|
|
this.SelectButton = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Image = global::FSO.IDE.Properties.Resources.search;
|
|
this.pictureBox1.Location = new System.Drawing.Point(13, 13);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(18, 19);
|
|
this.pictureBox1.TabIndex = 5;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// SearchBox
|
|
//
|
|
this.SearchBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.SearchBox.Location = new System.Drawing.Point(34, 12);
|
|
this.SearchBox.Name = "SearchBox";
|
|
this.SearchBox.Size = new System.Drawing.Size(208, 20);
|
|
this.SearchBox.TabIndex = 7;
|
|
this.SearchBox.TextChanged += new System.EventHandler(this.SearchBox_TextChanged);
|
|
//
|
|
// PrimitiveList
|
|
//
|
|
this.PrimitiveList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.PrimitiveList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.PrimitiveList.FormattingEnabled = true;
|
|
this.PrimitiveList.IntegralHeight = false;
|
|
this.PrimitiveList.Location = new System.Drawing.Point(12, 37);
|
|
this.PrimitiveList.Name = "PrimitiveList";
|
|
this.PrimitiveList.Size = new System.Drawing.Size(230, 329);
|
|
this.PrimitiveList.TabIndex = 6;
|
|
this.PrimitiveList.SelectedIndexChanged += new System.EventHandler(this.PrimitiveList_SelectedIndexChanged);
|
|
//
|
|
// SelectButton
|
|
//
|
|
this.SelectButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.SelectButton.Location = new System.Drawing.Point(12, 372);
|
|
this.SelectButton.Name = "SelectButton";
|
|
this.SelectButton.Size = new System.Drawing.Size(230, 23);
|
|
this.SelectButton.TabIndex = 8;
|
|
this.SelectButton.Text = "Select None";
|
|
this.SelectButton.UseVisualStyleBackColor = true;
|
|
this.SelectButton.Click += new System.EventHandler(this.SelectButton_Click);
|
|
//
|
|
// SelectTreeDialog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(254, 406);
|
|
this.Controls.Add(this.SelectButton);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.SearchBox);
|
|
this.Controls.Add(this.PrimitiveList);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "SelectTreeDialog";
|
|
this.Text = "Select A TREE...";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.TextBox SearchBox;
|
|
private System.Windows.Forms.ListBox PrimitiveList;
|
|
private System.Windows.Forms.Button SelectButton;
|
|
}
|
|
} |