Advertisement
Guest User

Untitled

a guest
Mar 16th, 2018
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. partial class Overlay
  2. {
  3. private System.ComponentModel.IContainer components = null;
  4.  
  5. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14.  
  15. #region Windows Form Designer generated code
  16.  
  17. private void InitializeComponent()
  18. {
  19. this.SuspendLayout();
  20. //
  21. // Overlay
  22. //
  23. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  24. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  25. this.BackColor = System.Drawing.Color.Black;
  26. this.ClientSize = new System.Drawing.Size(10, 10);
  27. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  28. this.Name = "Overlay";
  29. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  30. this.Text = "Overlay";
  31. this.TopMost = true;
  32. this.TransparencyKey = System.Drawing.Color.Black;
  33. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OverlayClose);
  34. this.Load += new System.EventHandler(this.OverlayLoad);
  35. this.ResumeLayout(false);
  36.  
  37. }
  38. #endregion
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement