namespace Capstone { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); this.shapeComboBox = new System.Windows.Forms.ComboBox(); this.colorSchemeComboBox = new System.Windows.Forms.ComboBox(); this.shapesLabel = new System.Windows.Forms.Label(); this.colorSchemesLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // panel1 // this.panel1.BackColor = System.Drawing.SystemColors.ActiveCaption; this.panel1.Location = new System.Drawing.Point(12, 151); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(1992, 1112); this.panel1.TabIndex = 0; this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint_1); // // shapeComboBox // this.shapeComboBox.FormattingEnabled = true; this.shapeComboBox.Items.AddRange(new object[] { "Square", "Triangle", "No Shape"}); this.shapeComboBox.Location = new System.Drawing.Point(740, 85); this.shapeComboBox.Name = "shapeComboBox"; this.shapeComboBox.Size = new System.Drawing.Size(364, 39); this.shapeComboBox.TabIndex = 3; this.shapeComboBox.Text = "No Shape"; this.shapeComboBox.SelectedIndexChanged += new System.EventHandler(this.shapeComboBox_SelectedIndexChanged); // // colorSchemeComboBox // this.colorSchemeComboBox.AccessibleName = "colorSchemeComboBox"; this.colorSchemeComboBox.FormattingEnabled = true; this.colorSchemeComboBox.Items.AddRange(new object[] { "Feelin\' Blue", "Random", "You Are My Sunshine", "It\'s Not Easy Being Green", "Norby\'s Favorite", "Roses Are Red"}); this.colorSchemeComboBox.Location = new System.Drawing.Point(1114, 85); this.colorSchemeComboBox.Name = "colorSchemeComboBox"; this.colorSchemeComboBox.Size = new System.Drawing.Size(364, 39); this.colorSchemeComboBox.TabIndex = 4; this.colorSchemeComboBox.Text = "Roses Are Red"; this.colorSchemeComboBox.SelectedIndexChanged += new System.EventHandler(this.colorSchemeComboBox_SelectedIndexChanged); // // shapesLabel // this.shapesLabel.AutoSize = true; this.shapesLabel.Location = new System.Drawing.Point(740, 44); this.shapesLabel.Name = "shapesLabel"; this.shapesLabel.Size = new System.Drawing.Size(234, 32); this.shapesLabel.TabIndex = 5; this.shapesLabel.Text = "Choose a Shape:"; // // colorSchemesLabel // this.colorSchemesLabel.AutoSize = true; this.colorSchemesLabel.Location = new System.Drawing.Point(1114, 44); this.colorSchemesLabel.Name = "colorSchemesLabel"; this.colorSchemesLabel.Size = new System.Drawing.Size(330, 32); this.colorSchemesLabel.TabIndex = 6; this.colorSchemesLabel.Text = "Choose a Color Scheme:"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(2037, 1275); this.Controls.Add(this.colorSchemesLabel); this.Controls.Add(this.shapesLabel); this.Controls.Add(this.colorSchemeComboBox); this.Controls.Add(this.shapeComboBox); this.Controls.Add(this.panel1); this.Name = "Form1"; this.Text = "Tag Cloud Generator"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Panel panel1; private System.Windows.Forms.ComboBox shapeComboBox; private System.Windows.Forms.ComboBox colorSchemeComboBox; private System.Windows.Forms.Label shapesLabel; private System.Windows.Forms.Label colorSchemesLabel; } }