- Fixed some resource issues - Implemented RecentProjects Feature - Implemented build process - Added a Logger implementation for BuildContent Class - Added a displayable log to the MainWindow UI - Fixed a bug that occured when adding files to the content root - Trying to open a not existing project no longer throws an exception ContentPipeline: - Added missing property "Profile" to ContentProject
90 lines
4.3 KiB
C#
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.None;
|
|
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;
|
|
}
|
|
}
|