MainForm.Designer.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. namespace qdr.app.tools.claudecodebalancewidget
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. #region Windows Form Designer generated code
  10. /// <summary>
  11. /// Required method for Designer support - do not modify
  12. /// the contents of this method with the code editor.
  13. /// </summary>
  14. private void InitializeComponent()
  15. {
  16. this.SuspendLayout();
  17. // MainForm
  18. this.AutoScaleDimensions = new SizeF(7F, 15F);
  19. this.AutoScaleMode = AutoScaleMode.Font;
  20. this.ClientSize = new Size(300, 100);
  21. this.Name = "MainForm";
  22. this.Text = "Claude Balance Monitor";
  23. this.StartPosition = FormStartPosition.CenterScreen;
  24. this.TopMost = true;
  25. this.ShowInTaskbar = false;
  26. this.FormBorderStyle = FormBorderStyle.None;
  27. // Paint event for custom drawing
  28. this.Paint += MainForm_Paint;
  29. // Mouse events for dragging
  30. this.MouseDown += MainForm_MouseDown;
  31. this.MouseMove += MainForm_MouseMove;
  32. this.MouseUp += MainForm_MouseUp;
  33. this.ResumeLayout(false);
  34. }
  35. #endregion
  36. }
  37. }