namespace ExtendedComponentSample { partial class AlarmComponentSampleForm { /// /// 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.components = new System.ComponentModel.Container(); this.dateTimePicker = new System.Windows.Forms.DateTimePicker(); this.setAlarmButton = new System.Windows.Forms.Button(); this.AlarmComponent = new ExtendedComponentSample.AlarmComponent(this.components); this.SuspendLayout(); // // dateTimePicker // this.dateTimePicker.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Time; this.dateTimePicker.Location = new System.Drawing.Point(93, 12); this.dateTimePicker.Name = "dateTimePicker"; this.dateTimePicker.Size = new System.Drawing.Size(187, 20); this.dateTimePicker.TabIndex = 6; // // setAlarmButton // this.setAlarmButton.Location = new System.Drawing.Point(12, 11); this.setAlarmButton.Name = "setAlarmButton"; this.setAlarmButton.Size = new System.Drawing.Size(75, 23); this.setAlarmButton.TabIndex = 5; this.setAlarmButton.Text = "Set Alarm"; this.setAlarmButton.Click += new System.EventHandler(this.setAlarmButton_Click); // // AlarmComponent // this.AlarmComponent.Alarm = new System.DateTime(2005, 5, 5, 4, 47, 0, 0); this.AlarmComponent.Enabled = true; // // AlarmComponentSampleForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 43); this.Controls.Add(this.dateTimePicker); this.Controls.Add(this.setAlarmButton); this.Name = "AlarmComponentSampleForm"; this.Text = "Alarm Form"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.DateTimePicker dateTimePicker; private System.Windows.Forms.Button setAlarmButton; private AlarmComponent AlarmComponent; } }