2012-08-26 19:03:12 +00:00
|
|
|
|
namespace ANX.ContentCompiler.GUI.Controls
|
|
|
|
|
{
|
|
|
|
|
partial class ArrowButton
|
|
|
|
|
{
|
|
|
|
|
/// <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 Component 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.labelText = new System.Windows.Forms.Label();
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.splitContainer = new System.Windows.Forms.SplitContainer();
|
2012-09-08 22:31:50 +00:00
|
|
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
2012-10-05 11:11:31 +00:00
|
|
|
|
#if !MONO
|
2012-09-08 22:31:50 +00:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
2012-09-24 16:53:56 +00:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
|
|
|
#endif
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.splitContainer.Panel1.SuspendLayout();
|
|
|
|
|
this.splitContainer.Panel2.SuspendLayout();
|
|
|
|
|
this.splitContainer.SuspendLayout();
|
2012-08-26 19:03:12 +00:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// labelText
|
|
|
|
|
//
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.labelText.Dock = System.Windows.Forms.DockStyle.Fill;
|
2012-08-26 19:03:12 +00:00
|
|
|
|
this.labelText.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.labelText.Location = new System.Drawing.Point(0, 0);
|
2012-08-26 19:03:12 +00:00
|
|
|
|
this.labelText.Name = "labelText";
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.labelText.Size = new System.Drawing.Size(259, 48);
|
2012-08-26 19:03:12 +00:00
|
|
|
|
this.labelText.TabIndex = 0;
|
|
|
|
|
this.labelText.Text = "Test Text";
|
|
|
|
|
this.labelText.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.labelText.Click += new System.EventHandler(this.LabelTextClick);
|
|
|
|
|
this.labelText.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ArrowButtonMouseDown);
|
|
|
|
|
this.labelText.MouseEnter += new System.EventHandler(this.ArrowButtonMouseEnter);
|
|
|
|
|
this.labelText.MouseLeave += new System.EventHandler(this.ArrowButtonMouseLeave);
|
|
|
|
|
this.labelText.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ArrowButtonMouseUp);
|
2012-08-26 19:03:12 +00:00
|
|
|
|
//
|
2012-08-27 19:09:10 +00:00
|
|
|
|
// splitContainer
|
|
|
|
|
//
|
|
|
|
|
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.splitContainer.IsSplitterFixed = true;
|
|
|
|
|
this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.splitContainer.Name = "splitContainer";
|
|
|
|
|
//
|
|
|
|
|
// splitContainer.Panel1
|
|
|
|
|
//
|
|
|
|
|
this.splitContainer.Panel1.Controls.Add(this.pictureBox1);
|
|
|
|
|
//
|
|
|
|
|
// splitContainer.Panel2
|
|
|
|
|
//
|
|
|
|
|
this.splitContainer.Panel2.Controls.Add(this.labelText);
|
|
|
|
|
this.splitContainer.Size = new System.Drawing.Size(310, 48);
|
|
|
|
|
this.splitContainer.SplitterDistance = 47;
|
|
|
|
|
this.splitContainer.TabIndex = 2;
|
2012-08-26 19:03:12 +00:00
|
|
|
|
//
|
2012-09-08 22:31:50 +00:00
|
|
|
|
// pictureBox1
|
|
|
|
|
//
|
|
|
|
|
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.pictureBox1.Image = global::ANX.ContentCompiler.GUI.Properties.Resources.arrow1;
|
|
|
|
|
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
|
|
|
this.pictureBox1.Size = new System.Drawing.Size(47, 48);
|
|
|
|
|
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
|
|
|
this.pictureBox1.TabIndex = 1;
|
|
|
|
|
this.pictureBox1.TabStop = false;
|
|
|
|
|
this.pictureBox1.Click += new System.EventHandler(this.PictureBox1Click);
|
|
|
|
|
this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ArrowButtonMouseDown);
|
|
|
|
|
this.pictureBox1.MouseEnter += new System.EventHandler(this.ArrowButtonMouseEnter);
|
|
|
|
|
this.pictureBox1.MouseLeave += new System.EventHandler(this.ArrowButtonMouseLeave);
|
|
|
|
|
this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ArrowButtonMouseUp);
|
|
|
|
|
//
|
2012-08-26 19:03:12 +00:00
|
|
|
|
// ArrowButton
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.AutoSize = true;
|
|
|
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.Controls.Add(this.splitContainer);
|
2012-08-26 19:03:12 +00:00
|
|
|
|
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
|
|
|
this.ForeColor = System.Drawing.Color.White;
|
|
|
|
|
this.Name = "ArrowButton";
|
2012-08-27 19:09:10 +00:00
|
|
|
|
this.Size = new System.Drawing.Size(310, 48);
|
|
|
|
|
this.Load += new System.EventHandler(this.ArrowButtonLoad);
|
|
|
|
|
this.FontChanged += new System.EventHandler(this.ArrowButtonFontChanged);
|
|
|
|
|
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ArrowButtonMouseDown);
|
|
|
|
|
this.MouseEnter += new System.EventHandler(this.ArrowButtonMouseEnter);
|
|
|
|
|
this.MouseLeave += new System.EventHandler(this.ArrowButtonMouseLeave);
|
|
|
|
|
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ArrowButtonMouseUp);
|
|
|
|
|
this.splitContainer.Panel1.ResumeLayout(false);
|
|
|
|
|
this.splitContainer.Panel2.ResumeLayout(false);
|
2012-10-05 11:11:31 +00:00
|
|
|
|
#if !MONO
|
2012-09-08 22:31:50 +00:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
2012-09-24 16:53:56 +00:00
|
|
|
|
#endif
|
|
|
|
|
this.splitContainer.ResumeLayout(false);
|
2012-08-26 19:03:12 +00:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.Label labelText;
|
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
2012-08-27 19:09:10 +00:00
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer;
|
2012-08-26 19:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|