frmLogon.Designer.cs
1 namespace MouseWithoutBorders 2 { 3 partial class frmLogon 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLogon)); 32 this.labelDesktop = new System.Windows.Forms.Label(); 33 this.SuspendLayout(); 34 // 35 // labelDesktop 36 // 37 this.labelDesktop.AutoSize = true; 38 this.labelDesktop.BackColor = System.Drawing.Color.White; 39 this.labelDesktop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 40 this.labelDesktop.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 41 this.labelDesktop.ForeColor = System.Drawing.Color.LimeGreen; 42 this.labelDesktop.Location = new System.Drawing.Point(1, 1); 43 this.labelDesktop.Name = "labelDesktop"; 44 this.labelDesktop.Size = new System.Drawing.Size(80, 15); 45 this.labelDesktop.TabIndex = 0; 46 this.labelDesktop.Text = "MouseWithoutBorders"; 47 // 48 // frmLogon 49 // 50 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 51 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 52 this.ClientSize = new System.Drawing.Size(83, 17); 53 this.ControlBox = false; 54 this.Controls.Add(this.labelDesktop); 55 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 56 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 57 this.MaximizeBox = false; 58 this.MinimizeBox = false; 59 this.Name = "frmLogon"; 60 this.Opacity = 0.5; 61 this.ShowIcon = false; 62 this.ShowInTaskbar = false; 63 this.Text = "MouseWithoutBorders"; 64 this.TopMost = true; 65 this.Load += new System.EventHandler(this.frmLogon_Load); 66 this.Shown += new System.EventHandler(this.frmLogon_Shown); 67 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmLogon_FormClosing); 68 this.ResumeLayout(false); 69 this.PerformLayout(); 70 71 } 72 73 #endregion 74 75 private System.Windows.Forms.Label labelDesktop; 76 } 77 }