/ src / modules / MouseUtils / MouseJumpUI / MainForm.Designer.cs
MainForm.Designer.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  using System.Windows.Forms;
 6  
 7  namespace MouseJumpUI;
 8  
 9  internal sealed partial class MainForm
10  {
11  
12      /// <summary>
13      ///  Required designer variable.
14      /// </summary>
15      private System.ComponentModel.IContainer components = null;
16  
17      /// <summary>
18      ///  Clean up any resources being used.
19      /// </summary>
20      /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
21      protected override void Dispose(bool disposing)
22      {
23          if (disposing && (components != null))
24          {
25              components.Dispose();
26          }
27          base.Dispose(disposing);
28      }
29  
30      #region Windows Form Designer generated code
31  
32      /// <summary>
33      ///  Required method for Designer support - do not modify
34      ///  the contents of this method with the code editor.
35      /// </summary>
36      private void InitializeComponent()
37      {
38          System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
39          panel1 = new Panel();
40          Thumbnail = new PictureBox();
41          panel1.SuspendLayout();
42          ((System.ComponentModel.ISupportInitialize)Thumbnail).BeginInit();
43          SuspendLayout();
44          // 
45          // panel1
46          // 
47          panel1.BackColor = System.Drawing.SystemColors.Highlight;
48          panel1.Controls.Add(Thumbnail);
49          panel1.Dock = DockStyle.Fill;
50          panel1.Location = new System.Drawing.Point(0, 0);
51          panel1.Name = "panel1";
52          panel1.Size = new System.Drawing.Size(800, 450);
53          panel1.TabIndex = 1;
54          // 
55          // Thumbnail
56          // 
57          Thumbnail.BackColor = System.Drawing.SystemColors.Control;
58          Thumbnail.Dock = DockStyle.Fill;
59          Thumbnail.Location = new System.Drawing.Point(5, 5);
60          Thumbnail.Name = "Thumbnail";
61          Thumbnail.Size = new System.Drawing.Size(800, 450);
62          Thumbnail.SizeMode = PictureBoxSizeMode.Normal;
63          Thumbnail.TabIndex = 1;
64          Thumbnail.TabStop = false;
65          Thumbnail.Click += Thumbnail_Click;
66          // 
67          // MainForm
68          // 
69          AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
70          AutoScaleMode = AutoScaleMode.Font;
71          ClientSize = new System.Drawing.Size(800, 450);
72          Controls.Add(panel1);
73          FormBorderStyle = FormBorderStyle.None;
74          Icon = (System.Drawing.Icon)resources.GetObject("$this.Icon");
75          KeyPreview = true;
76          Name = "MainForm";
77          ShowInTaskbar = false;
78          StartPosition = FormStartPosition.Manual;
79          Text = "MouseJump";
80          TopMost = true;
81          Deactivate += MainForm_Deactivate;
82          Load += MainForm_Load;
83          KeyDown += MainForm_KeyDown;
84          panel1.ResumeLayout(false);
85          ((System.ComponentModel.ISupportInitialize)Thumbnail).EndInit();
86          ResumeLayout(false);
87      }
88  
89      #endregion
90  
91      private Panel panel1;
92      private PictureBox Thumbnail;
93  
94  }