frmMain.Designer.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. 
  2. namespace TaskbarGroups
  3. {
  4. sealed partial class frmMain
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.SuspendLayout();
  30. //
  31. // frmMain
  32. //
  33. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  34. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  35. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(33)))), ((int)(((byte)(33)))));
  36. this.ClientSize = new System.Drawing.Size(325, 226);
  37. this.DoubleBuffered = true;
  38. this.KeyPreview = true;
  39. this.Name = "frmMain";
  40. this.Text = "Group";
  41. this.Deactivate += new System.EventHandler(this.frmMain_Deactivate);
  42. this.Load += new System.EventHandler(this.frmMain_Load);
  43. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmMain_KeyDown);
  44. this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.frmMain_KeyUp);
  45. this.ResumeLayout(false);
  46. }
  47. #endregion
  48. }
  49. }