| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- namespace qdr.app.tools.claudecodebalancewidget
- {
- partial class MainForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
-
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.SuspendLayout();
-
- // MainForm
- this.AutoScaleDimensions = new SizeF(7F, 15F);
- this.AutoScaleMode = AutoScaleMode.Font;
- this.ClientSize = new Size(300, 100);
- this.Name = "MainForm";
- this.Text = "Claude Balance Monitor";
- this.StartPosition = FormStartPosition.CenterScreen;
- this.TopMost = true;
- this.ShowInTaskbar = false;
- this.FormBorderStyle = FormBorderStyle.None;
-
- // Paint event for custom drawing
- this.Paint += MainForm_Paint;
-
- // Mouse events for dragging
- this.MouseDown += MainForm_MouseDown;
- this.MouseMove += MainForm_MouseMove;
- this.MouseUp += MainForm_MouseUp;
-
- this.ResumeLayout(false);
- }
- #endregion
- }
- }
|