Form1.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. 
  2. namespace ZLPlugin_LisPacs_MR_YJMZ
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  31. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  32. this.退出 = new System.Windows.Forms.ToolStripMenuItem();
  33. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.contextMenuStrip1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // contextMenuStrip1
  39. //
  40. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  41. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  42. this.退出});
  43. this.contextMenuStrip1.Name = "contextMenuStrip1";
  44. this.contextMenuStrip1.Size = new System.Drawing.Size(109, 28);
  45. //
  46. // 退出
  47. //
  48. this.退出.Name = "退出";
  49. this.退出.Size = new System.Drawing.Size(210, 24);
  50. this.退出.Text = "退出";
  51. this.退出.Click += new System.EventHandler(this.close_Click);
  52. //
  53. // notifyIcon1
  54. //
  55. this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
  56. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  57. this.notifyIcon1.Text = "互认通信插件";
  58. this.notifyIcon1.Visible = true;
  59. //
  60. // label1
  61. //
  62. this.label1.AutoSize = true;
  63. this.label1.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.label1.Location = new System.Drawing.Point(33, 22);
  65. this.label1.Name = "label1";
  66. this.label1.Size = new System.Drawing.Size(418, 30);
  67. this.label1.TabIndex = 1;
  68. this.label1.Text = "地址:http://127.0.0.1:7071";
  69. //
  70. // Form1
  71. //
  72. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  73. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  74. this.ClientSize = new System.Drawing.Size(491, 297);
  75. this.Controls.Add(this.label1);
  76. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  77. this.MaximizeBox = false;
  78. this.Name = "Form1";
  79. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  80. this.Text = "TCP通信";
  81. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  82. this.Load += new System.EventHandler(this.Form1_Load);
  83. this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged);
  84. this.contextMenuStrip1.ResumeLayout(false);
  85. this.ResumeLayout(false);
  86. this.PerformLayout();
  87. }
  88. #endregion
  89. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  90. private System.Windows.Forms.ToolStripMenuItem 退出;
  91. private System.Windows.Forms.NotifyIcon notifyIcon1;
  92. private System.Windows.Forms.Label label1;
  93. }
  94. }