SxdCliMainForm.Designer.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. 
  2. namespace ScreenExtenderClient
  3. {
  4. partial class SxdCliMainForm
  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.SxdClVwPanel = new ScreenExtenderClient.DoubleBufferedPanel();
  31. this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
  32. this.SuspendLayout();
  33. //
  34. // SxdClVwPanel
  35. //
  36. this.SxdClVwPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.SxdClVwPanel.Location = new System.Drawing.Point(0, 0);
  38. this.SxdClVwPanel.Name = "SxdClVwPanel";
  39. this.SxdClVwPanel.Size = new System.Drawing.Size(800, 450);
  40. this.SxdClVwPanel.TabIndex = 0;
  41. this.SxdClVwPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.SxdClVwPanel_Paint);
  42. //
  43. // UpdateTimer
  44. //
  45. this.UpdateTimer.Enabled = true;
  46. this.UpdateTimer.Interval = 500;
  47. this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
  48. //
  49. // SxdCliMainForm
  50. //
  51. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  52. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  53. this.ClientSize = new System.Drawing.Size(800, 450);
  54. this.Controls.Add(this.SxdClVwPanel);
  55. this.Name = "SxdCliMainForm";
  56. this.Text = "Screen Extener Client";
  57. this.ResumeLayout(false);
  58. }
  59. #endregion
  60. private System.Windows.Forms.Timer UpdateTimer;
  61. private DoubleBufferedPanel SxdClVwPanel;
  62. }
  63. }