Konstantin Koch a8588a30a5 Update ContentCompiler, make Visual Studio Extension work without having Anx Framework installed.
Make ContentCompilerGui compatible to recent changes in pipeline and did
some usability changes.
Make the Visual Studio Extension work even if the ANX Framework is not
installed additionally..
Improve that the path for assembly refernces in a content project
doesn't get automatically updated, only if the reference is actually
saved, this is so you can specify a relative path yourself.
Fix missing icon for ContentProject when it was opened with Visual
Studio.
Made create_shaders.bat directly executable under windows by fixing the
directory separators.
2015-09-03 23:43:55 +02:00

90 lines
4.3 KiB
C#

namespace ANX.ContentCompiler.GUI.Controls
{
partial class RibbonTextBox
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Komponenten-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.buttonDown = new System.Windows.Forms.Button();
this.textBox = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// buttonDown
//
this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonDown.FlatAppearance.BorderColor = System.Drawing.Color.Gray;
this.buttonDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
this.buttonDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Gray;
this.buttonDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonDown.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonDown.ForeColor = System.Drawing.Color.White;
this.buttonDown.Location = new System.Drawing.Point(324, 3);
this.buttonDown.Name = "buttonDown";
this.buttonDown.Size = new System.Drawing.Size(23, 73);
this.buttonDown.TabIndex = 1;
this.buttonDown.Text = "V";
this.buttonDown.UseVisualStyleBackColor = true;
this.buttonDown.Click += new System.EventHandler(this.ButtonDownClick);
//
// textBox
//
this.textBox.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.textBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.textBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.textBox.ForeColor = System.Drawing.Color.White;
this.textBox.Location = new System.Drawing.Point(3, 3);
this.textBox.Name = "textBox";
this.textBox.ReadOnly = true;
this.textBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.textBox.Size = new System.Drawing.Size(315, 73);
this.textBox.TabIndex = 2;
this.textBox.Text = "";
this.textBox.WordWrap = false;
//
// RibbonTextBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.Controls.Add(this.textBox);
this.Controls.Add(this.buttonDown);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "RibbonTextBox";
this.Size = new System.Drawing.Size(353, 79);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonDown;
private System.Windows.Forms.RichTextBox textBox;
}
}