坐席客户端5.0

FrmMain.Designer.cs 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. namespace Lecall
  2. {
  3. partial class FrmMain
  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 Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
  30. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  31. this.tbtbnSet = new System.Windows.Forms.ToolStripButton();
  32. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  33. this.tbnDebug = new System.Windows.Forms.ToolStripButton();
  34. this.panel1 = new System.Windows.Forms.Panel();
  35. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  36. this.toolStrip1.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // toolStrip1
  40. //
  41. this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
  42. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  43. this.tbtbnSet,
  44. this.toolStripSeparator1,
  45. this.tbnDebug});
  46. this.toolStrip1.Location = new System.Drawing.Point(0, 513);
  47. this.toolStrip1.Name = "toolStrip1";
  48. this.toolStrip1.Size = new System.Drawing.Size(865, 25);
  49. this.toolStrip1.TabIndex = 0;
  50. this.toolStrip1.Text = "toolStrip1";
  51. //
  52. // tbtbnSet
  53. //
  54. this.tbtbnSet.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
  55. this.tbtbnSet.AutoToolTip = false;
  56. this.tbtbnSet.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  57. this.tbtbnSet.Image = ((System.Drawing.Image)(resources.GetObject("tbtbnSet.Image")));
  58. this.tbtbnSet.ImageTransparentColor = System.Drawing.Color.Magenta;
  59. this.tbtbnSet.Name = "tbtbnSet";
  60. this.tbtbnSet.Size = new System.Drawing.Size(60, 22);
  61. this.tbtbnSet.Text = "基础设置";
  62. this.tbtbnSet.Click += new System.EventHandler(this.tbtbnSet_Click);
  63. //
  64. // toolStripSeparator1
  65. //
  66. this.toolStripSeparator1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
  67. this.toolStripSeparator1.Name = "toolStripSeparator1";
  68. this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
  69. //
  70. // tbnDebug
  71. //
  72. this.tbnDebug.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
  73. this.tbnDebug.AutoToolTip = false;
  74. this.tbnDebug.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  75. this.tbnDebug.Image = ((System.Drawing.Image)(resources.GetObject("tbnDebug.Image")));
  76. this.tbnDebug.ImageTransparentColor = System.Drawing.Color.Magenta;
  77. this.tbnDebug.Name = "tbnDebug";
  78. this.tbnDebug.Size = new System.Drawing.Size(60, 22);
  79. this.tbnDebug.Text = "调试模式";
  80. this.tbnDebug.Click += new System.EventHandler(this.tbnDebug_Click);
  81. //
  82. // panel1
  83. //
  84. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  85. this.panel1.Location = new System.Drawing.Point(0, 0);
  86. this.panel1.Name = "panel1";
  87. this.panel1.Size = new System.Drawing.Size(865, 513);
  88. this.panel1.TabIndex = 1;
  89. //
  90. // FrmMain
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.ClientSize = new System.Drawing.Size(865, 538);
  95. this.Controls.Add(this.panel1);
  96. this.Controls.Add(this.toolStrip1);
  97. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  98. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  99. this.HelpButton = true;
  100. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  101. this.KeyPreview = true;
  102. this.Margin = new System.Windows.Forms.Padding(4);
  103. this.Name = "FrmMain";
  104. this.Text = "河南华谊乐呼呼叫中心V5.0.0";
  105. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  106. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmMain_FormClosed);
  107. this.Load += new System.EventHandler(this.Form1_Load);
  108. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
  109. this.toolStrip1.ResumeLayout(false);
  110. this.toolStrip1.PerformLayout();
  111. this.ResumeLayout(false);
  112. this.PerformLayout();
  113. }
  114. #endregion
  115. private System.Windows.Forms.ToolStrip toolStrip1;
  116. private System.Windows.Forms.ToolStripButton tbtbnSet;
  117. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  118. private System.Windows.Forms.ToolStripButton tbnDebug;
  119. private System.Windows.Forms.Panel panel1;
  120. private System.Windows.Forms.ToolTip toolTip1;
  121. }
  122. }