SetLoadingWindow.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace UAS_LabelMachine.PublicForm
  2. {
  3. partial class SetLoadingWindow
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetLoadingWindow));
  29. this.CancelThread = new System.Windows.Forms.Button();
  30. this.loadingCircle1 = new UAS_LabelMachine.CustomControl.SetLoading.LoadingCircle();
  31. this.SuspendLayout();
  32. //
  33. // CancelThread
  34. //
  35. this.CancelThread.Location = new System.Drawing.Point(155, 144);
  36. this.CancelThread.Name = "CancelThread";
  37. this.CancelThread.Size = new System.Drawing.Size(75, 26);
  38. this.CancelThread.TabIndex = 1;
  39. this.CancelThread.Text = "取消";
  40. this.CancelThread.UseVisualStyleBackColor = true;
  41. this.CancelThread.Click += new System.EventHandler(this.CancelThread_Click);
  42. //
  43. // loadingCircle1
  44. //
  45. this.loadingCircle1.Active = false;
  46. this.loadingCircle1.Color = System.Drawing.Color.DarkGray;
  47. this.loadingCircle1.InnerCircleRadius = 5;
  48. this.loadingCircle1.Location = new System.Drawing.Point(141, 65);
  49. this.loadingCircle1.Margin = new System.Windows.Forms.Padding(4);
  50. this.loadingCircle1.Name = "loadingCircle1";
  51. this.loadingCircle1.NumberSpoke = 12;
  52. this.loadingCircle1.OuterCircleRadius = 11;
  53. this.loadingCircle1.RotationSpeed = 100;
  54. this.loadingCircle1.Size = new System.Drawing.Size(100, 62);
  55. this.loadingCircle1.SpokeThickness = 2;
  56. this.loadingCircle1.StylePreset = UAS_LabelMachine.CustomControl.SetLoading.LoadingCircle.StylePresets.MacOSX;
  57. this.loadingCircle1.TabIndex = 0;
  58. this.loadingCircle1.Text = "loadingCircle1";
  59. //
  60. // SetLoadingWindow
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(379, 198);
  65. this.Controls.Add(this.CancelThread);
  66. this.Controls.Add(this.loadingCircle1);
  67. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  68. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  69. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  70. this.Name = "SetLoadingWindow";
  71. this.Text = "SetLoadingWindow";
  72. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SetLoadingWindow_FormClosing);
  73. this.Load += new System.EventHandler(this.SetLoadingWindow_Load);
  74. this.ResumeLayout(false);
  75. }
  76. #endregion
  77. private CustomControl.SetLoading.LoadingCircle loadingCircle1;
  78. private System.Windows.Forms.Button CancelThread;
  79. }
  80. }