MyProgressBar.Designer.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. 
  2. namespace PaintDotNet.Preview2
  3. {
  4. partial class MyProgressBar
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.SuspendLayout();
  31. //
  32. // panel1
  33. //
  34. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
  35. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  36. this.panel1.Location = new System.Drawing.Point(0, 0);
  37. this.panel1.Name = "panel1";
  38. this.panel1.Size = new System.Drawing.Size(222, 26);
  39. this.panel1.TabIndex = 0;
  40. //
  41. // MyProgressBar
  42. //
  43. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  44. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  45. this.BackColor = System.Drawing.Color.White;
  46. this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  47. this.Controls.Add(this.panel1);
  48. this.Name = "MyProgressBar";
  49. this.Size = new System.Drawing.Size(398, 26);
  50. this.ResumeLayout(false);
  51. }
  52. #endregion
  53. private System.Windows.Forms.Panel panel1;
  54. }
  55. }