mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-26 17:02:53 +08:00
128 lines
6.0 KiB
C#
128 lines
6.0 KiB
C#
namespace CodeWalker.Project.Panels
|
|
{
|
|
partial class EditYbnBoundVertexPanel
|
|
{
|
|
/// <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(EditYbnBoundVertexPanel));
|
|
this.PositionTextBox = new System.Windows.Forms.TextBox();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.DeleteButton = new System.Windows.Forms.Button();
|
|
this.AddToProjectButton = new System.Windows.Forms.Button();
|
|
this.ColourTextBox = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// PositionTextBox
|
|
//
|
|
this.PositionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.PositionTextBox.Location = new System.Drawing.Point(82, 47);
|
|
this.PositionTextBox.Name = "PositionTextBox";
|
|
this.PositionTextBox.Size = new System.Drawing.Size(457, 20);
|
|
this.PositionTextBox.TabIndex = 1;
|
|
this.PositionTextBox.TextChanged += new System.EventHandler(this.PositionTextBox_TextChanged);
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Location = new System.Drawing.Point(27, 50);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(47, 13);
|
|
this.label5.TabIndex = 0;
|
|
this.label5.Text = "Position:";
|
|
//
|
|
// DeleteButton
|
|
//
|
|
this.DeleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.DeleteButton.Location = new System.Drawing.Point(458, 7);
|
|
this.DeleteButton.Name = "DeleteButton";
|
|
this.DeleteButton.Size = new System.Drawing.Size(95, 23);
|
|
this.DeleteButton.TabIndex = 40;
|
|
this.DeleteButton.Text = "Delete Vertex";
|
|
this.DeleteButton.UseVisualStyleBackColor = true;
|
|
this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
|
|
//
|
|
// AddToProjectButton
|
|
//
|
|
this.AddToProjectButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.AddToProjectButton.Location = new System.Drawing.Point(357, 7);
|
|
this.AddToProjectButton.Name = "AddToProjectButton";
|
|
this.AddToProjectButton.Size = new System.Drawing.Size(95, 23);
|
|
this.AddToProjectButton.TabIndex = 39;
|
|
this.AddToProjectButton.Text = "Add to Project";
|
|
this.AddToProjectButton.UseVisualStyleBackColor = true;
|
|
this.AddToProjectButton.Click += new System.EventHandler(this.AddToProjectButton_Click);
|
|
//
|
|
// ColourTextBox
|
|
//
|
|
this.ColourTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.ColourTextBox.Location = new System.Drawing.Point(82, 73);
|
|
this.ColourTextBox.Name = "ColourTextBox";
|
|
this.ColourTextBox.Size = new System.Drawing.Size(457, 20);
|
|
this.ColourTextBox.TabIndex = 3;
|
|
this.ColourTextBox.TextChanged += new System.EventHandler(this.ColourTextBox_TextChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(27, 76);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(40, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Colour:";
|
|
//
|
|
// EditYbnBoundVertexPanel
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(565, 505);
|
|
this.Controls.Add(this.ColourTextBox);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.DeleteButton);
|
|
this.Controls.Add(this.AddToProjectButton);
|
|
this.Controls.Add(this.PositionTextBox);
|
|
this.Controls.Add(this.label5);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "EditYbnBoundVertexPanel";
|
|
this.Text = "EditYbnBoundVertexPanel";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox PositionTextBox;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.Button DeleteButton;
|
|
private System.Windows.Forms.Button AddToProjectButton;
|
|
private System.Windows.Forms.TextBox ColourTextBox;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
} |