mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
Added BuildOptionsPropertyPage(.cs) class and file. Added ConfiguationBase(.cs) class and file. Added DebugOptionsPropertyPage(.cs) class and file. Added DebugOptionsQemu(.cs) class and file. Added required guids of new property pages to Guids(.cs). Added TitleDivision(.cs) class and file.
62 lines
1.8 KiB
C#
62 lines
1.8 KiB
C#
namespace Cosmos.VS.Package
|
|
{
|
|
partial class TitleDivision
|
|
{
|
|
/// <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.labelTitle = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelTitle
|
|
//
|
|
this.labelTitle.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
|
this.labelTitle.AutoSize = true;
|
|
this.labelTitle.Location = new System.Drawing.Point(3, 0);
|
|
this.labelTitle.Margin = new System.Windows.Forms.Padding(3, 0, 6, 0);
|
|
this.labelTitle.Name = "labelTitle";
|
|
this.labelTitle.Size = new System.Drawing.Size(67, 13);
|
|
this.labelTitle.TabIndex = 0;
|
|
this.labelTitle.Text = "Title Division";
|
|
//
|
|
// TitleDivision
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.Transparent;
|
|
this.Controls.Add(this.labelTitle);
|
|
this.Name = "TitleDivision";
|
|
this.Size = new System.Drawing.Size(379, 13);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label labelTitle;
|
|
}
|
|
}
|