ScreenExtenderMainForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. 
  2. namespace ScreenExtender
  3. {
  4. partial class ScreenExtenderMainForm
  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. this.TitleColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  31. this.PosColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  32. this.ListenTextBox = new System.Windows.Forms.TextBox();
  33. this.CaptureListView = new System.Windows.Forms.ListView();
  34. this.StatusLabel = new System.Windows.Forms.Label();
  35. this.PortNumericUpDown = new System.Windows.Forms.NumericUpDown();
  36. this.AddButton = new System.Windows.Forms.Button();
  37. this.RemoveButton = new System.Windows.Forms.Button();
  38. this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
  39. this.ListViewManagePanel = new System.Windows.Forms.Panel();
  40. this.LoadButton = new System.Windows.Forms.Button();
  41. this.SaveButton = new System.Windows.Forms.Button();
  42. this.PreviewPictureBox = new System.Windows.Forms.PictureBox();
  43. this.HvCheckBox = new System.Windows.Forms.CheckBox();
  44. this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
  45. this.ListenCheckButton = new System.Windows.Forms.CheckBox();
  46. ((System.ComponentModel.ISupportInitialize)(this.PortNumericUpDown)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).BeginInit();
  48. this.MainSplitContainer.Panel1.SuspendLayout();
  49. this.MainSplitContainer.Panel2.SuspendLayout();
  50. this.MainSplitContainer.SuspendLayout();
  51. this.ListViewManagePanel.SuspendLayout();
  52. ((System.ComponentModel.ISupportInitialize)(this.PreviewPictureBox)).BeginInit();
  53. this.SuspendLayout();
  54. //
  55. // TitleColumnHeader
  56. //
  57. this.TitleColumnHeader.Text = "Title";
  58. this.TitleColumnHeader.Width = 120;
  59. //
  60. // PosColumnHeader
  61. //
  62. this.PosColumnHeader.Text = "Pos";
  63. this.PosColumnHeader.Width = 120;
  64. //
  65. // ListenTextBox
  66. //
  67. this.ListenTextBox.Location = new System.Drawing.Point(12, 12);
  68. this.ListenTextBox.Name = "ListenTextBox";
  69. this.ListenTextBox.Size = new System.Drawing.Size(100, 21);
  70. this.ListenTextBox.TabIndex = 0;
  71. this.ListenTextBox.Text = "000.000.000.000";
  72. //
  73. // CaptureListView
  74. //
  75. this.CaptureListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  76. this.TitleColumnHeader,
  77. this.PosColumnHeader});
  78. this.CaptureListView.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.CaptureListView.FullRowSelect = true;
  80. this.CaptureListView.GridLines = true;
  81. this.CaptureListView.HideSelection = false;
  82. this.CaptureListView.Location = new System.Drawing.Point(0, 36);
  83. this.CaptureListView.Name = "CaptureListView";
  84. this.CaptureListView.Size = new System.Drawing.Size(252, 611);
  85. this.CaptureListView.TabIndex = 3;
  86. this.CaptureListView.UseCompatibleStateImageBehavior = false;
  87. this.CaptureListView.View = System.Windows.Forms.View.Details;
  88. //
  89. // StatusLabel
  90. //
  91. this.StatusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  92. | System.Windows.Forms.AnchorStyles.Right)));
  93. this.StatusLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  94. this.StatusLabel.Location = new System.Drawing.Point(262, 13);
  95. this.StatusLabel.Name = "StatusLabel";
  96. this.StatusLabel.Size = new System.Drawing.Size(565, 20);
  97. this.StatusLabel.TabIndex = 5;
  98. this.StatusLabel.Text = "FooooBarrrrrrr";
  99. //
  100. // PortNumericUpDown
  101. //
  102. this.PortNumericUpDown.Location = new System.Drawing.Point(118, 12);
  103. this.PortNumericUpDown.Maximum = new decimal(new int[] {
  104. 65535,
  105. 0,
  106. 0,
  107. 0});
  108. this.PortNumericUpDown.Minimum = new decimal(new int[] {
  109. 1,
  110. 0,
  111. 0,
  112. 0});
  113. this.PortNumericUpDown.Name = "PortNumericUpDown";
  114. this.PortNumericUpDown.Size = new System.Drawing.Size(54, 21);
  115. this.PortNumericUpDown.TabIndex = 1;
  116. this.PortNumericUpDown.Value = new decimal(new int[] {
  117. 61234,
  118. 0,
  119. 0,
  120. 0});
  121. //
  122. // AddButton
  123. //
  124. this.AddButton.Location = new System.Drawing.Point(3, 3);
  125. this.AddButton.Name = "AddButton";
  126. this.AddButton.Size = new System.Drawing.Size(50, 23);
  127. this.AddButton.TabIndex = 2;
  128. this.AddButton.Text = "Add";
  129. this.AddButton.UseVisualStyleBackColor = true;
  130. this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
  131. //
  132. // RemoveButton
  133. //
  134. this.RemoveButton.Location = new System.Drawing.Point(59, 3);
  135. this.RemoveButton.Name = "RemoveButton";
  136. this.RemoveButton.Size = new System.Drawing.Size(50, 23);
  137. this.RemoveButton.TabIndex = 2;
  138. this.RemoveButton.Text = "Remove";
  139. this.RemoveButton.UseVisualStyleBackColor = true;
  140. this.RemoveButton.Click += new System.EventHandler(this.RemoveButton_Click);
  141. //
  142. // MainSplitContainer
  143. //
  144. this.MainSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  145. | System.Windows.Forms.AnchorStyles.Left)
  146. | System.Windows.Forms.AnchorStyles.Right)));
  147. this.MainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  148. this.MainSplitContainer.Location = new System.Drawing.Point(12, 41);
  149. this.MainSplitContainer.Name = "MainSplitContainer";
  150. //
  151. // MainSplitContainer.Panel1
  152. //
  153. this.MainSplitContainer.Panel1.Controls.Add(this.CaptureListView);
  154. this.MainSplitContainer.Panel1.Controls.Add(this.ListViewManagePanel);
  155. //
  156. // MainSplitContainer.Panel2
  157. //
  158. this.MainSplitContainer.Panel2.Controls.Add(this.PreviewPictureBox);
  159. this.MainSplitContainer.Size = new System.Drawing.Size(854, 647);
  160. this.MainSplitContainer.SplitterDistance = 252;
  161. this.MainSplitContainer.TabIndex = 7;
  162. //
  163. // ListViewManagePanel
  164. //
  165. this.ListViewManagePanel.Controls.Add(this.LoadButton);
  166. this.ListViewManagePanel.Controls.Add(this.SaveButton);
  167. this.ListViewManagePanel.Controls.Add(this.RemoveButton);
  168. this.ListViewManagePanel.Controls.Add(this.AddButton);
  169. this.ListViewManagePanel.Dock = System.Windows.Forms.DockStyle.Top;
  170. this.ListViewManagePanel.Location = new System.Drawing.Point(0, 0);
  171. this.ListViewManagePanel.Name = "ListViewManagePanel";
  172. this.ListViewManagePanel.Size = new System.Drawing.Size(252, 36);
  173. this.ListViewManagePanel.TabIndex = 4;
  174. //
  175. // LoadButton
  176. //
  177. this.LoadButton.Location = new System.Drawing.Point(171, 3);
  178. this.LoadButton.Name = "LoadButton";
  179. this.LoadButton.Size = new System.Drawing.Size(50, 23);
  180. this.LoadButton.TabIndex = 3;
  181. this.LoadButton.Text = "Load";
  182. this.LoadButton.UseVisualStyleBackColor = true;
  183. this.LoadButton.Click += new System.EventHandler(this.LoadButton_Click);
  184. //
  185. // SaveButton
  186. //
  187. this.SaveButton.Location = new System.Drawing.Point(115, 3);
  188. this.SaveButton.Name = "SaveButton";
  189. this.SaveButton.Size = new System.Drawing.Size(50, 23);
  190. this.SaveButton.TabIndex = 3;
  191. this.SaveButton.Text = "Save";
  192. this.SaveButton.UseVisualStyleBackColor = true;
  193. this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
  194. //
  195. // PreviewPictureBox
  196. //
  197. this.PreviewPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  198. this.PreviewPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  199. this.PreviewPictureBox.Location = new System.Drawing.Point(0, 0);
  200. this.PreviewPictureBox.Name = "PreviewPictureBox";
  201. this.PreviewPictureBox.Size = new System.Drawing.Size(598, 647);
  202. this.PreviewPictureBox.TabIndex = 0;
  203. this.PreviewPictureBox.TabStop = false;
  204. this.PreviewPictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.PreviewPictureBox_Paint);
  205. this.PreviewPictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PreviewPictureBox_MouseDown);
  206. this.PreviewPictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.PreviewPictureBox_MouseMove);
  207. this.PreviewPictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PreviewPictureBox_MouseUp);
  208. this.PreviewPictureBox.Resize += new System.EventHandler(this.PreviewPictureBox_Resize);
  209. //
  210. // HvCheckBox
  211. //
  212. this.HvCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  213. this.HvCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
  214. this.HvCheckBox.AutoSize = true;
  215. this.HvCheckBox.Location = new System.Drawing.Point(833, 13);
  216. this.HvCheckBox.Name = "HvCheckBox";
  217. this.HvCheckBox.Size = new System.Drawing.Size(33, 22);
  218. this.HvCheckBox.TabIndex = 6;
  219. this.HvCheckBox.Text = "H/V";
  220. this.HvCheckBox.UseVisualStyleBackColor = true;
  221. this.HvCheckBox.CheckedChanged += new System.EventHandler(this.HvCheckBox_CheckedChanged);
  222. //
  223. // UpdateTimer
  224. //
  225. this.UpdateTimer.Enabled = true;
  226. this.UpdateTimer.Interval = 125;
  227. this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
  228. //
  229. // ListenCheckButton
  230. //
  231. this.ListenCheckButton.Appearance = System.Windows.Forms.Appearance.Button;
  232. this.ListenCheckButton.Location = new System.Drawing.Point(178, 12);
  233. this.ListenCheckButton.Name = "ListenCheckButton";
  234. this.ListenCheckButton.Size = new System.Drawing.Size(78, 21);
  235. this.ListenCheckButton.TabIndex = 5;
  236. this.ListenCheckButton.Text = "Listen";
  237. this.ListenCheckButton.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  238. this.ListenCheckButton.UseVisualStyleBackColor = true;
  239. this.ListenCheckButton.CheckedChanged += new System.EventHandler(this.ListenCheckButton_CheckedChanged);
  240. //
  241. // ScreenExtenderMainForm
  242. //
  243. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  244. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  245. this.ClientSize = new System.Drawing.Size(878, 700);
  246. this.Controls.Add(this.ListenCheckButton);
  247. this.Controls.Add(this.MainSplitContainer);
  248. this.Controls.Add(this.HvCheckBox);
  249. this.Controls.Add(this.StatusLabel);
  250. this.Controls.Add(this.PortNumericUpDown);
  251. this.Controls.Add(this.ListenTextBox);
  252. this.Name = "ScreenExtenderMainForm";
  253. this.Text = "Screen Extender";
  254. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScreenExtenderMainForm_FormClosing);
  255. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ScreenExtenderMainForm_FormClosed);
  256. this.Shown += new System.EventHandler(this.ScreenExtenderMainForm_Shown);
  257. ((System.ComponentModel.ISupportInitialize)(this.PortNumericUpDown)).EndInit();
  258. this.MainSplitContainer.Panel1.ResumeLayout(false);
  259. this.MainSplitContainer.Panel2.ResumeLayout(false);
  260. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).EndInit();
  261. this.MainSplitContainer.ResumeLayout(false);
  262. this.ListViewManagePanel.ResumeLayout(false);
  263. ((System.ComponentModel.ISupportInitialize)(this.PreviewPictureBox)).EndInit();
  264. this.ResumeLayout(false);
  265. this.PerformLayout();
  266. }
  267. #endregion
  268. private System.Windows.Forms.TextBox ListenTextBox;
  269. private System.Windows.Forms.ListView CaptureListView;
  270. private System.Windows.Forms.Label StatusLabel;
  271. private System.Windows.Forms.NumericUpDown PortNumericUpDown;
  272. private System.Windows.Forms.Button AddButton;
  273. private System.Windows.Forms.Button RemoveButton;
  274. private System.Windows.Forms.SplitContainer MainSplitContainer;
  275. private System.Windows.Forms.Panel ListViewManagePanel;
  276. private System.Windows.Forms.CheckBox HvCheckBox;
  277. private System.Windows.Forms.Timer UpdateTimer;
  278. private System.Windows.Forms.ColumnHeader TitleColumnHeader;
  279. private System.Windows.Forms.ColumnHeader PosColumnHeader;
  280. private System.Windows.Forms.PictureBox PreviewPictureBox;
  281. private System.Windows.Forms.CheckBox ListenCheckButton;
  282. private System.Windows.Forms.Button LoadButton;
  283. private System.Windows.Forms.Button SaveButton;
  284. }
  285. }