A utility that can generate GUIDs in various formats. This is intended to patch in the gaps that Visual Studio's "Create GUID" feature has.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

195 lines
9.8 KiB

namespace GUIDacious {
partial class GuidForm {
/// <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() {
this.NewGuidButton = new System.Windows.Forms.Button();
this.CurrentGuidLabel = new System.Windows.Forms.Label();
this.CurrentGuidDisplay = new System.Windows.Forms.Label();
this.GuidFormatBox = new System.Windows.Forms.TextBox();
this.CopyButton = new System.Windows.Forms.Button();
this.FormatsGroup = new System.Windows.Forms.GroupBox();
this.FormatComponentsUpper = new System.Windows.Forms.RadioButton();
this.FormatStringUpper = new System.Windows.Forms.RadioButton();
this.FormatNewGuid = new System.Windows.Forms.RadioButton();
this.FormatComponentsLower = new System.Windows.Forms.RadioButton();
this.FormatStringLower = new System.Windows.Forms.RadioButton();
this.FormatsGroup.SuspendLayout();
this.SuspendLayout();
//
// NewGuidButton
//
this.NewGuidButton.Location = new System.Drawing.Point(12, 12);
this.NewGuidButton.Name = "NewGuidButton";
this.NewGuidButton.Size = new System.Drawing.Size(75, 23);
this.NewGuidButton.TabIndex = 0;
this.NewGuidButton.Text = "&New GUID";
this.NewGuidButton.UseVisualStyleBackColor = true;
this.NewGuidButton.Click += new System.EventHandler(this.NewGuidButton_Click);
//
// CurrentGuidLabel
//
this.CurrentGuidLabel.AutoSize = true;
this.CurrentGuidLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.CurrentGuidLabel.Location = new System.Drawing.Point(105, 17);
this.CurrentGuidLabel.Name = "CurrentGuidLabel";
this.CurrentGuidLabel.Size = new System.Drawing.Size(87, 13);
this.CurrentGuidLabel.TabIndex = 1;
this.CurrentGuidLabel.Text = "Current GUID:";
//
// CurrentGuidDisplay
//
this.CurrentGuidDisplay.AutoSize = true;
this.CurrentGuidDisplay.Location = new System.Drawing.Point(198, 17);
this.CurrentGuidDisplay.Name = "CurrentGuidDisplay";
this.CurrentGuidDisplay.Size = new System.Drawing.Size(211, 13);
this.CurrentGuidDisplay.TabIndex = 2;
this.CurrentGuidDisplay.Text = "00000000-0000-0000-0000-000000000000";
//
// GuidFormatBox
//
this.GuidFormatBox.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.GuidFormatBox.Location = new System.Drawing.Point(13, 160);
this.GuidFormatBox.Multiline = true;
this.GuidFormatBox.Name = "GuidFormatBox";
this.GuidFormatBox.ReadOnly = true;
this.GuidFormatBox.Size = new System.Drawing.Size(397, 138);
this.GuidFormatBox.TabIndex = 4;
//
// CopyButton
//
this.CopyButton.Location = new System.Drawing.Point(298, 304);
this.CopyButton.Name = "CopyButton";
this.CopyButton.Size = new System.Drawing.Size(112, 23);
this.CopyButton.TabIndex = 5;
this.CopyButton.Text = "&Copy to Clipboard";
this.CopyButton.UseVisualStyleBackColor = true;
this.CopyButton.Click += new System.EventHandler(this.CopyButton_Click);
//
// FormatsGroup
//
this.FormatsGroup.Controls.Add(this.FormatComponentsUpper);
this.FormatsGroup.Controls.Add(this.FormatStringUpper);
this.FormatsGroup.Controls.Add(this.FormatNewGuid);
this.FormatsGroup.Controls.Add(this.FormatComponentsLower);
this.FormatsGroup.Controls.Add(this.FormatStringLower);
this.FormatsGroup.Location = new System.Drawing.Point(13, 41);
this.FormatsGroup.Name = "FormatsGroup";
this.FormatsGroup.Size = new System.Drawing.Size(396, 113);
this.FormatsGroup.TabIndex = 3;
this.FormatsGroup.TabStop = false;
this.FormatsGroup.Text = "&Formats";
//
// FormatComponentsUpper
//
this.FormatComponentsUpper.AutoSize = true;
this.FormatComponentsUpper.Location = new System.Drawing.Point(6, 88);
this.FormatComponentsUpper.Name = "FormatComponentsUpper";
this.FormatComponentsUpper.Size = new System.Drawing.Size(143, 17);
this.FormatComponentsUpper.TabIndex = 4;
this.FormatComponentsUpper.Text = "Components (uppercase)";
this.FormatComponentsUpper.UseVisualStyleBackColor = true;
this.FormatComponentsUpper.CheckedChanged += new System.EventHandler(this.Format_CheckedChanged);
//
// FormatStringUpper
//
this.FormatStringUpper.AutoSize = true;
this.FormatStringUpper.Location = new System.Drawing.Point(6, 42);
this.FormatStringUpper.Name = "FormatStringUpper";
this.FormatStringUpper.Size = new System.Drawing.Size(111, 17);
this.FormatStringUpper.TabIndex = 3;
this.FormatStringUpper.Text = "String (uppercase)";
this.FormatStringUpper.UseVisualStyleBackColor = true;
this.FormatStringUpper.CheckedChanged += new System.EventHandler(this.Format_CheckedChanged);
//
// FormatNewGuid
//
this.FormatNewGuid.AutoSize = true;
this.FormatNewGuid.Location = new System.Drawing.Point(205, 19);
this.FormatNewGuid.Name = "FormatNewGuid";
this.FormatNewGuid.Size = new System.Drawing.Size(79, 17);
this.FormatNewGuid.TabIndex = 2;
this.FormatNewGuid.Text = "new Guid();";
this.FormatNewGuid.UseVisualStyleBackColor = true;
this.FormatNewGuid.CheckedChanged += new System.EventHandler(this.Format_CheckedChanged);
//
// FormatComponentsLower
//
this.FormatComponentsLower.AutoSize = true;
this.FormatComponentsLower.Location = new System.Drawing.Point(6, 65);
this.FormatComponentsLower.Name = "FormatComponentsLower";
this.FormatComponentsLower.Size = new System.Drawing.Size(141, 17);
this.FormatComponentsLower.TabIndex = 1;
this.FormatComponentsLower.Text = "Components (lowercase)";
this.FormatComponentsLower.UseVisualStyleBackColor = true;
this.FormatComponentsLower.CheckedChanged += new System.EventHandler(this.Format_CheckedChanged);
//
// FormatStringLower
//
this.FormatStringLower.AutoSize = true;
this.FormatStringLower.Checked = true;
this.FormatStringLower.Location = new System.Drawing.Point(6, 19);
this.FormatStringLower.Name = "FormatStringLower";
this.FormatStringLower.Size = new System.Drawing.Size(109, 17);
this.FormatStringLower.TabIndex = 0;
this.FormatStringLower.TabStop = true;
this.FormatStringLower.Text = "String (lowercase)";
this.FormatStringLower.UseVisualStyleBackColor = true;
this.FormatStringLower.CheckedChanged += new System.EventHandler(this.Format_CheckedChanged);
//
// GuidForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(420, 339);
this.Controls.Add(this.FormatsGroup);
this.Controls.Add(this.CopyButton);
this.Controls.Add(this.GuidFormatBox);
this.Controls.Add(this.CurrentGuidDisplay);
this.Controls.Add(this.CurrentGuidLabel);
this.Controls.Add(this.NewGuidButton);
this.Name = "GuidForm";
this.Text = "Form1";
this.FormatsGroup.ResumeLayout(false);
this.FormatsGroup.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button NewGuidButton;
private System.Windows.Forms.Label CurrentGuidLabel;
private System.Windows.Forms.Label CurrentGuidDisplay;
private System.Windows.Forms.TextBox GuidFormatBox;
private System.Windows.Forms.Button CopyButton;
private System.Windows.Forms.GroupBox FormatsGroup;
private System.Windows.Forms.RadioButton FormatNewGuid;
private System.Windows.Forms.RadioButton FormatComponentsLower;
private System.Windows.Forms.RadioButton FormatStringLower;
private System.Windows.Forms.RadioButton FormatComponentsUpper;
private System.Windows.Forms.RadioButton FormatStringUpper;
}
}