BattlePanelContainer.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. namespace XmdsBattleClientWin32.Battle
  2. {
  3. partial class BattlePanelContainer
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BattlePanelContainer));
  29. this.toolStripFunc = new System.Windows.Forms.ToolStrip();
  30. this.btn_Chat = new System.Windows.Forms.ToolStripButton();
  31. this.panel1 = new System.Windows.Forms.Panel();
  32. this.btn_TC = new System.Windows.Forms.ToolStripButton();
  33. this.toolStripFunc.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // toolStripFunc
  37. //
  38. this.toolStripFunc.Dock = System.Windows.Forms.DockStyle.Bottom;
  39. this.toolStripFunc.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
  40. this.toolStripFunc.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  41. this.btn_Chat,
  42. this.btn_TC});
  43. this.toolStripFunc.Location = new System.Drawing.Point(0, 453);
  44. this.toolStripFunc.Name = "toolStripFunc";
  45. this.toolStripFunc.Size = new System.Drawing.Size(902, 28);
  46. this.toolStripFunc.TabIndex = 0;
  47. this.toolStripFunc.Text = "toolStrip1";
  48. //
  49. // btn_Chat
  50. //
  51. this.btn_Chat.AutoSize = false;
  52. this.btn_Chat.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  53. this.btn_Chat.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  54. this.btn_Chat.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  55. this.btn_Chat.Image = ((System.Drawing.Image)(resources.GetObject("btn_Chat.Image")));
  56. this.btn_Chat.ImageTransparentColor = System.Drawing.Color.Magenta;
  57. this.btn_Chat.Name = "btn_Chat";
  58. this.btn_Chat.Size = new System.Drawing.Size(30, 25);
  59. this.btn_Chat.Text = "聊";
  60. this.btn_Chat.ToolTipText = "聊天";
  61. this.btn_Chat.Click += new System.EventHandler(this.btn_Chat_Click);
  62. //
  63. // panel1
  64. //
  65. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  66. this.panel1.Location = new System.Drawing.Point(0, 0);
  67. this.panel1.Name = "panel1";
  68. this.panel1.Size = new System.Drawing.Size(902, 453);
  69. this.panel1.TabIndex = 1;
  70. //
  71. // btn_TC
  72. //
  73. this.btn_TC.AutoSize = false;
  74. this.btn_TC.BackColor = System.Drawing.Color.Aqua;
  75. this.btn_TC.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  76. this.btn_TC.Image = ((System.Drawing.Image)(resources.GetObject("btn_TC.Image")));
  77. this.btn_TC.ImageTransparentColor = System.Drawing.Color.Magenta;
  78. this.btn_TC.Name = "btn_TC";
  79. this.btn_TC.Size = new System.Drawing.Size(30, 25);
  80. this.btn_TC.Text = "TC";
  81. this.btn_TC.ToolTipText = "TC模拟器";
  82. this.btn_TC.Click += new System.EventHandler(this.btn_TC_Click);
  83. //
  84. // BattlePanelContainer
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.Controls.Add(this.panel1);
  89. this.Controls.Add(this.toolStripFunc);
  90. this.Name = "BattlePanelContainer";
  91. this.Size = new System.Drawing.Size(902, 481);
  92. this.toolStripFunc.ResumeLayout(false);
  93. this.toolStripFunc.PerformLayout();
  94. this.ResumeLayout(false);
  95. this.PerformLayout();
  96. }
  97. #endregion
  98. private System.Windows.Forms.ToolStrip toolStripFunc;
  99. private System.Windows.Forms.Panel panel1;
  100. private System.Windows.Forms.ToolStripButton btn_Chat;
  101. private System.Windows.Forms.ToolStripButton btn_TC;
  102. }
  103. }