SetLoadingWindow.Designer.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.loadingCircle1 = new UAS_LabelMachine.CustomControl.SetLoading.LoadingCircle();
  30. this.SuspendLayout();
  31. //
  32. // loadingCircle1
  33. //
  34. this.loadingCircle1.Active = false;
  35. this.loadingCircle1.Color = System.Drawing.Color.DarkGray;
  36. this.loadingCircle1.InnerCircleRadius = 8;
  37. this.loadingCircle1.Location = new System.Drawing.Point(106, 52);
  38. this.loadingCircle1.Name = "loadingCircle1";
  39. this.loadingCircle1.NumberSpoke = 10;
  40. this.loadingCircle1.OuterCircleRadius = 10;
  41. this.loadingCircle1.RotationSpeed = 100;
  42. this.loadingCircle1.Size = new System.Drawing.Size(75, 50);
  43. this.loadingCircle1.SpokeThickness = 4;
  44. this.loadingCircle1.TabIndex = 0;
  45. this.loadingCircle1.Text = "loadingCircle1";
  46. //
  47. // SetLoadingWindow
  48. //
  49. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  50. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  51. this.ClientSize = new System.Drawing.Size(284, 158);
  52. this.Controls.Add(this.loadingCircle1);
  53. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  54. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  55. this.Name = "SetLoadingWindow";
  56. this.Text = "SetLoadingWindow";
  57. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SetLoadingWindow_FormClosing);
  58. this.Load += new System.EventHandler(this.SetLoadingWindow_Load);
  59. this.ResumeLayout(false);
  60. }
  61. #endregion
  62. private CustomControl.SetLoading.LoadingCircle loadingCircle1;
  63. }
  64. }