SsrAsyncStatusStrip.Designer.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace Dongke.WinForm.Controls
  2. {
  3. partial class SsrAsyncStatusStrip
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. components = new System.ComponentModel.Container();
  29. this.tslblStripText = new System.Windows.Forms.ToolStripStatusLabel();
  30. this.tslblCommLable = new System.Windows.Forms.ToolStripStatusLabel();
  31. this.tslblCommImage = new System.Windows.Forms.ToolStripStatusLabel();
  32. this.tslblDateTime = new System.Windows.Forms.ToolStripStatusLabel();
  33. this.tmrDateTime = new System.Windows.Forms.Timer(this.components);
  34. this.tmrCommText = new System.Windows.Forms.Timer(this.components);
  35. //
  36. // tssStatusText
  37. //
  38. this.tslblStripText.Name = "tssStatusText";
  39. this.tslblStripText.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  40. //this.tssStripText.BackgroundImage = Dongke.iBOSS.Basics.BaseControls.Properties.Resource.background;
  41. this.tslblStripText.Spring = true;
  42. //
  43. // tssCLable
  44. //
  45. this.tslblCommLable.Name = "tssCLable";
  46. //this.tssCLable.BackgroundImage = Dongke.iBOSS.Basics.BaseControls.Properties.Resource.background;
  47. //
  48. // tssCImage
  49. //
  50. this.tslblCommImage.Name = "tssCImage";
  51. //this.tssCImage.BackgroundImage = Dongke.iBOSS.Basics.BaseControls.Properties.Resource.background;
  52. //
  53. // tssDateTime
  54. //
  55. this.tslblDateTime.Name = "tssDateTime";
  56. this.tslblDateTime.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  57. //this.tssDateTime.BackgroundImage = Dongke.iBOSS.Basics.BaseControls.Properties.Resource.background;
  58. //
  59. // timer
  60. //
  61. this.tmrDateTime.Tick += this.timer_Tick;
  62. //
  63. // cTimer
  64. //
  65. this.tmrCommText.Tick += this.cTimer_Tick;
  66. this.Items.Add(tslblStripText);
  67. this.Items.Add(tslblCommImage);
  68. this.Items.Add(tslblCommLable);
  69. this.Items.Add(tslblDateTime);
  70. }
  71. #endregion
  72. private System.Windows.Forms.ToolStripStatusLabel tslblStripText;
  73. private System.Windows.Forms.ToolStripStatusLabel tslblCommLable;
  74. private System.Windows.Forms.ToolStripStatusLabel tslblCommImage;
  75. private System.Windows.Forms.ToolStripStatusLabel tslblDateTime;
  76. private System.Windows.Forms.Timer tmrDateTime;
  77. private System.Windows.Forms.Timer tmrCommText;
  78. }
  79. }