namespace DummyCursor { partial class MainForm { /// /// 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() { components = new System.ComponentModel.Container(); timer1 = new System.Windows.Forms.Timer(components); ChooseWatchingWindowButton = new Button(); label1 = new Label(); ChooseShowDummyOnWindowButton = new Button(); label2 = new Label(); ActiveCheckButton = new CheckBox(); SuspendLayout(); // // timer1 // timer1.Interval = 30; timer1.Tick += timer1_Tick; // // ChooseWatchingWindowButton // ChooseWatchingWindowButton.Location = new Point(134, 6); ChooseWatchingWindowButton.Name = "ChooseWatchingWindowButton"; ChooseWatchingWindowButton.Size = new Size(202, 23); ChooseWatchingWindowButton.TabIndex = 0; ChooseWatchingWindowButton.Text = ""; ChooseWatchingWindowButton.UseVisualStyleBackColor = true; ChooseWatchingWindowButton.Click += ChooseWatchingWindowButton_Click; // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 9); label1.Name = "label1"; label1.Size = new Size(116, 17); label1.TabIndex = 1; label1.Text = "Watching Window:"; // // ChooseShowDummyOnWindowButton // ChooseShowDummyOnWindowButton.Location = new Point(134, 35); ChooseShowDummyOnWindowButton.Name = "ChooseShowDummyOnWindowButton"; ChooseShowDummyOnWindowButton.Size = new Size(202, 23); ChooseShowDummyOnWindowButton.TabIndex = 0; ChooseShowDummyOnWindowButton.Text = ""; ChooseShowDummyOnWindowButton.UseVisualStyleBackColor = true; ChooseShowDummyOnWindowButton.Click += ChooseShowDummyOnWindowButton_Click; // // label2 // label2.AutoSize = true; label2.Location = new Point(12, 38); label2.Name = "label2"; label2.Size = new Size(111, 17); label2.TabIndex = 1; label2.Text = "Show Dummy On:"; // // ActiveCheckButton // ActiveCheckButton.Appearance = Appearance.Button; ActiveCheckButton.AutoSize = true; ActiveCheckButton.Location = new Point(134, 75); ActiveCheckButton.Name = "ActiveCheckButton"; ActiveCheckButton.Size = new Size(52, 27); ActiveCheckButton.TabIndex = 2; ActiveCheckButton.Text = "Avtive"; ActiveCheckButton.UseVisualStyleBackColor = true; ActiveCheckButton.CheckedChanged += ActiveCheckButton_CheckedChanged; // // MainForm // AutoScaleDimensions = new SizeF(7F, 17F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(371, 128); Controls.Add(ActiveCheckButton); Controls.Add(label2); Controls.Add(label1); Controls.Add(ChooseShowDummyOnWindowButton); Controls.Add(ChooseWatchingWindowButton); Name = "MainForm"; Text = "Dummy Cursor"; ResumeLayout(false); PerformLayout(); } #endregion private System.Windows.Forms.Timer timer1; private Button ChooseWatchingWindowButton; private Label label1; private Button ChooseShowDummyOnWindowButton; private Label label2; private CheckBox ActiveCheckButton; } }