frmLoading.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. namespace NXWMS.Forms
  2. {
  3. partial class frmLoading
  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. this.components = new System.ComponentModel.Container();
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.kryptonPanel = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.lbMessage = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
  33. this.timer = new System.Windows.Forms.Timer(this.components);
  34. this.panel1.SuspendLayout();
  35. ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).BeginInit();
  36. this.kryptonPanel.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // panel1
  41. //
  42. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  43. this.panel1.Controls.Add(this.kryptonPanel);
  44. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  45. this.panel1.Location = new System.Drawing.Point(0, 0);
  46. this.panel1.Name = "panel1";
  47. this.panel1.Size = new System.Drawing.Size(320, 49);
  48. this.panel1.TabIndex = 1;
  49. //
  50. // kryptonPanel
  51. //
  52. this.kryptonPanel.Controls.Add(this.pictureBox1);
  53. this.kryptonPanel.Controls.Add(this.lbMessage);
  54. this.kryptonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.kryptonPanel.Location = new System.Drawing.Point(0, 0);
  56. this.kryptonPanel.Name = "kryptonPanel";
  57. this.kryptonPanel.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ButtonCustom1;
  58. this.kryptonPanel.Size = new System.Drawing.Size(318, 47);
  59. this.kryptonPanel.TabIndex = 1;
  60. //
  61. // pictureBox1
  62. //
  63. this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
  64. this.pictureBox1.Image = global::NXWMS.Properties.Resources.loading;
  65. this.pictureBox1.Location = new System.Drawing.Point(15, 6);
  66. this.pictureBox1.Name = "pictureBox1";
  67. this.pictureBox1.Size = new System.Drawing.Size(35, 34);
  68. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  69. this.pictureBox1.TabIndex = 1;
  70. this.pictureBox1.TabStop = false;
  71. //
  72. // lbMessage
  73. //
  74. this.lbMessage.AutoSize = false;
  75. this.lbMessage.Font = new System.Drawing.Font("微软雅黑", 80F);
  76. this.lbMessage.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
  77. this.lbMessage.Location = new System.Drawing.Point(71, 11);
  78. this.lbMessage.Name = "lbMessage";
  79. this.lbMessage.Size = new System.Drawing.Size(244, 25);
  80. this.lbMessage.TabIndex = 0;
  81. this.lbMessage.Values.Text = "正在加载数据中...";
  82. //
  83. // timer
  84. //
  85. this.timer.Enabled = true;
  86. this.timer.Interval = 500;
  87. this.timer.Tick += new System.EventHandler(this.timer_Tick);
  88. //
  89. // frmLoading
  90. //
  91. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  92. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93. this.ClientSize = new System.Drawing.Size(320, 49);
  94. this.ControlBox = false;
  95. this.Controls.Add(this.panel1);
  96. this.DoubleBuffered = true;
  97. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  98. this.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ButtonGallery;
  99. this.GroupBorderStyle = ComponentFactory.Krypton.Toolkit.PaletteBorderStyle.ButtonCustom2;
  100. this.HeaderStyle = ComponentFactory.Krypton.Toolkit.HeaderStyle.Primary;
  101. this.Name = "frmLoading";
  102. this.Opacity = 0.8D;
  103. this.ShowInTaskbar = false;
  104. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  105. this.Text = "frmLoading";
  106. this.TopMost = true;
  107. this.panel1.ResumeLayout(false);
  108. ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).EndInit();
  109. this.kryptonPanel.ResumeLayout(false);
  110. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  111. this.ResumeLayout(false);
  112. }
  113. #endregion
  114. private System.Windows.Forms.Panel panel1;
  115. private ComponentFactory.Krypton.Toolkit.KryptonPanel kryptonPanel;
  116. private ComponentFactory.Krypton.Toolkit.KryptonLabel lbMessage;
  117. private System.Windows.Forms.PictureBox pictureBox1;
  118. private System.Windows.Forms.Timer timer;
  119. }
  120. }