FormDot.Designer.cs
1 using System.Windows.Forms; 2 3 namespace MouseWithoutBorders 4 { 5 partial class FormDot 6 { 7 /// <summary> 8 /// Required designer variable. 9 /// </summary> 10 private System.ComponentModel.IContainer components = null; 11 12 /// <summary> 13 /// Clean up any resources being used. 14 /// </summary> 15 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 16 protected override void Dispose(bool disposing) 17 { 18 if (disposing && (components != null)) 19 { 20 components.Dispose(); 21 } 22 base.Dispose(disposing); 23 } 24 25 #region Windows Form Designer generated code 26 27 /// <summary> 28 /// Required method for Designer support - do not modify 29 /// the contents of this method with the code editor. 30 /// </summary> 31 private void InitializeComponent() 32 { 33 this.SuspendLayout(); 34 // 35 // FormDot 36 // 37 this.BackColor = System.Drawing.Color.Black; 38 this.ClientSize = new System.Drawing.Size(2, 2); 39 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 40 this.MaximizeBox = false; 41 this.MinimizeBox = false; 42 this.Name = "FormDot"; 43 this.Opacity = 0.5D; 44 this.ShowIcon = false; 45 this.ShowInTaskbar = false; 46 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 47 this.TopMost = true; 48 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormDot_FormClosing); 49 this.Shown += new System.EventHandler(this.FormDot_Shown); 50 this.VisibleChanged += new System.EventHandler(this.FormDot_VisibleChanged); 51 this.Click += new System.EventHandler(this.FormDot_Click); 52 this.ResumeLayout(false); 53 54 } 55 56 #endregion 57 } 58 } 59