MainForm.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. namespace DummyCursor
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. components = new System.ComponentModel.Container();
  29. timer1 = new System.Windows.Forms.Timer(components);
  30. ChooseWatchingWindowButton = new Button();
  31. label1 = new Label();
  32. ChooseShowDummyOnWindowButton = new Button();
  33. label2 = new Label();
  34. ActiveCheckButton = new CheckBox();
  35. SuspendLayout();
  36. //
  37. // timer1
  38. //
  39. timer1.Interval = 30;
  40. timer1.Tick += timer1_Tick;
  41. //
  42. // ChooseWatchingWindowButton
  43. //
  44. ChooseWatchingWindowButton.Location = new Point(134, 6);
  45. ChooseWatchingWindowButton.Name = "ChooseWatchingWindowButton";
  46. ChooseWatchingWindowButton.Size = new Size(202, 23);
  47. ChooseWatchingWindowButton.TabIndex = 0;
  48. ChooseWatchingWindowButton.Text = "<choose>";
  49. ChooseWatchingWindowButton.UseVisualStyleBackColor = true;
  50. ChooseWatchingWindowButton.Click += ChooseWatchingWindowButton_Click;
  51. //
  52. // label1
  53. //
  54. label1.AutoSize = true;
  55. label1.Location = new Point(12, 9);
  56. label1.Name = "label1";
  57. label1.Size = new Size(116, 17);
  58. label1.TabIndex = 1;
  59. label1.Text = "Watching Window:";
  60. //
  61. // ChooseShowDummyOnWindowButton
  62. //
  63. ChooseShowDummyOnWindowButton.Location = new Point(134, 35);
  64. ChooseShowDummyOnWindowButton.Name = "ChooseShowDummyOnWindowButton";
  65. ChooseShowDummyOnWindowButton.Size = new Size(202, 23);
  66. ChooseShowDummyOnWindowButton.TabIndex = 0;
  67. ChooseShowDummyOnWindowButton.Text = "<choose>";
  68. ChooseShowDummyOnWindowButton.UseVisualStyleBackColor = true;
  69. ChooseShowDummyOnWindowButton.Click += ChooseShowDummyOnWindowButton_Click;
  70. //
  71. // label2
  72. //
  73. label2.AutoSize = true;
  74. label2.Location = new Point(12, 38);
  75. label2.Name = "label2";
  76. label2.Size = new Size(111, 17);
  77. label2.TabIndex = 1;
  78. label2.Text = "Show Dummy On:";
  79. //
  80. // ActiveCheckButton
  81. //
  82. ActiveCheckButton.Appearance = Appearance.Button;
  83. ActiveCheckButton.AutoSize = true;
  84. ActiveCheckButton.Location = new Point(134, 75);
  85. ActiveCheckButton.Name = "ActiveCheckButton";
  86. ActiveCheckButton.Size = new Size(52, 27);
  87. ActiveCheckButton.TabIndex = 2;
  88. ActiveCheckButton.Text = "Avtive";
  89. ActiveCheckButton.UseVisualStyleBackColor = true;
  90. ActiveCheckButton.CheckedChanged += ActiveCheckButton_CheckedChanged;
  91. //
  92. // MainForm
  93. //
  94. AutoScaleDimensions = new SizeF(7F, 17F);
  95. AutoScaleMode = AutoScaleMode.Font;
  96. ClientSize = new Size(371, 128);
  97. Controls.Add(ActiveCheckButton);
  98. Controls.Add(label2);
  99. Controls.Add(label1);
  100. Controls.Add(ChooseShowDummyOnWindowButton);
  101. Controls.Add(ChooseWatchingWindowButton);
  102. Name = "MainForm";
  103. Text = "Dummy Cursor";
  104. ResumeLayout(false);
  105. PerformLayout();
  106. }
  107. #endregion
  108. private System.Windows.Forms.Timer timer1;
  109. private Button ChooseWatchingWindowButton;
  110. private Label label1;
  111. private Button ChooseShowDummyOnWindowButton;
  112. private Label label2;
  113. private CheckBox ActiveCheckButton;
  114. }
  115. }