ServerMain.Designer.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. namespace RDServer
  2. {
  3. partial class ServerMain
  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(ServerMain));
  30. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  31. this.lbl_Message = new System.Windows.Forms.ToolStripStatusLabel();
  32. this.grb_Log = new System.Windows.Forms.GroupBox();
  33. this.ltv_Log = new System.Windows.Forms.ListView();
  34. this.col_Datetime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.col_IP = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  36. this.col_Event = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  37. this.cnm_notifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
  38. this.tlsShowMain = new System.Windows.Forms.ToolStripMenuItem();
  39. this.tlsExitAPP = new System.Windows.Forms.ToolStripMenuItem();
  40. this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
  41. this.statusStrip1.SuspendLayout();
  42. this.grb_Log.SuspendLayout();
  43. this.cnm_notifyIcon.SuspendLayout();
  44. this.SuspendLayout();
  45. //
  46. // statusStrip1
  47. //
  48. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  49. this.lbl_Message});
  50. this.statusStrip1.Location = new System.Drawing.Point(3, 536);
  51. this.statusStrip1.Name = "statusStrip1";
  52. this.statusStrip1.Size = new System.Drawing.Size(778, 22);
  53. this.statusStrip1.TabIndex = 4;
  54. this.statusStrip1.Text = "statusStrip1";
  55. //
  56. // lbl_Message
  57. //
  58. this.lbl_Message.Name = "lbl_Message";
  59. this.lbl_Message.Size = new System.Drawing.Size(0, 17);
  60. //
  61. // grb_Log
  62. //
  63. this.grb_Log.Controls.Add(this.ltv_Log);
  64. this.grb_Log.Controls.Add(this.statusStrip1);
  65. this.grb_Log.Dock = System.Windows.Forms.DockStyle.Fill;
  66. this.grb_Log.Location = new System.Drawing.Point(0, 0);
  67. this.grb_Log.Name = "grb_Log";
  68. this.grb_Log.Size = new System.Drawing.Size(784, 561);
  69. this.grb_Log.TabIndex = 5;
  70. this.grb_Log.TabStop = false;
  71. this.grb_Log.Text = "操作记录";
  72. //
  73. // ltv_Log
  74. //
  75. this.ltv_Log.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  76. this.col_Datetime,
  77. this.col_IP,
  78. this.col_Event});
  79. this.ltv_Log.Dock = System.Windows.Forms.DockStyle.Fill;
  80. this.ltv_Log.Location = new System.Drawing.Point(3, 17);
  81. this.ltv_Log.Name = "ltv_Log";
  82. this.ltv_Log.Size = new System.Drawing.Size(778, 519);
  83. this.ltv_Log.TabIndex = 2;
  84. this.ltv_Log.UseCompatibleStateImageBehavior = false;
  85. this.ltv_Log.View = System.Windows.Forms.View.Details;
  86. //
  87. // col_Datetime
  88. //
  89. this.col_Datetime.Text = "时间";
  90. this.col_Datetime.Width = 125;
  91. //
  92. // col_IP
  93. //
  94. this.col_IP.Text = "IP";
  95. this.col_IP.Width = 168;
  96. //
  97. // col_Event
  98. //
  99. this.col_Event.Text = "操作";
  100. this.col_Event.Width = 291;
  101. //
  102. // cnm_notifyIcon
  103. //
  104. this.cnm_notifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  105. this.tlsShowMain,
  106. this.tlsExitAPP});
  107. this.cnm_notifyIcon.Name = "cnm_notifyIcon";
  108. this.cnm_notifyIcon.Size = new System.Drawing.Size(119, 48);
  109. //
  110. // tlsShowMain
  111. //
  112. this.tlsShowMain.Name = "tlsShowMain";
  113. this.tlsShowMain.Size = new System.Drawing.Size(118, 22);
  114. this.tlsShowMain.Text = "显示(&O)";
  115. this.tlsShowMain.Click += new System.EventHandler(this.tlsShowMain_Click);
  116. //
  117. // tlsExitAPP
  118. //
  119. this.tlsExitAPP.Name = "tlsExitAPP";
  120. this.tlsExitAPP.Size = new System.Drawing.Size(118, 22);
  121. this.tlsExitAPP.Text = "退出(&E)";
  122. this.tlsExitAPP.Click += new System.EventHandler(this.tlsExitAPP_Click);
  123. //
  124. // notifyIcon
  125. //
  126. this.notifyIcon.ContextMenuStrip = this.cnm_notifyIcon;
  127. this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
  128. this.notifyIcon.Text = "远程桌面服务端";
  129. this.notifyIcon.Visible = true;
  130. this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MouseDoubleClick);
  131. //
  132. // ServerMain
  133. //
  134. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  135. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  136. this.ClientSize = new System.Drawing.Size(784, 561);
  137. this.Controls.Add(this.grb_Log);
  138. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  139. this.Name = "ServerMain";
  140. this.Text = "远程桌面服务器端";
  141. this.statusStrip1.ResumeLayout(false);
  142. this.statusStrip1.PerformLayout();
  143. this.grb_Log.ResumeLayout(false);
  144. this.grb_Log.PerformLayout();
  145. this.cnm_notifyIcon.ResumeLayout(false);
  146. this.ResumeLayout(false);
  147. }
  148. #endregion
  149. private System.Windows.Forms.StatusStrip statusStrip1;
  150. private System.Windows.Forms.ToolStripStatusLabel lbl_Message;
  151. private System.Windows.Forms.GroupBox grb_Log;
  152. private System.Windows.Forms.ListView ltv_Log;
  153. private System.Windows.Forms.ColumnHeader col_Datetime;
  154. private System.Windows.Forms.ColumnHeader col_IP;
  155. private System.Windows.Forms.ColumnHeader col_Event;
  156. private System.Windows.Forms.ContextMenuStrip cnm_notifyIcon;
  157. private System.Windows.Forms.ToolStripMenuItem tlsShowMain;
  158. private System.Windows.Forms.ToolStripMenuItem tlsExitAPP;
  159. private System.Windows.Forms.NotifyIcon notifyIcon;
  160. }
  161. }