MainForm.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace Playgrounds.WinForms
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.urhoSurface = new Urho.Extensions.WinForms.UrhoSurface();
  29. this.restartButton = new System.Windows.Forms.Button();
  30. this.removeControlBtn = new System.Windows.Forms.Button();
  31. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  32. this.pausedCb = new System.Windows.Forms.CheckBox();
  33. this.spawnBtn = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // urhoSurface
  37. //
  38. this.urhoSurface.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  39. | System.Windows.Forms.AnchorStyles.Left)
  40. | System.Windows.Forms.AnchorStyles.Right)));
  41. this.urhoSurface.FpsLimit = 60;
  42. this.urhoSurface.Location = new System.Drawing.Point(12, 61);
  43. this.urhoSurface.Name = "urhoSurface";
  44. this.urhoSurface.Paused = false;
  45. this.urhoSurface.Size = new System.Drawing.Size(922, 550);
  46. this.urhoSurface.TabIndex = 0;
  47. //
  48. // restartButton
  49. //
  50. this.restartButton.Location = new System.Drawing.Point(12, 18);
  51. this.restartButton.Name = "restartButton";
  52. this.restartButton.Size = new System.Drawing.Size(105, 23);
  53. this.restartButton.TabIndex = 1;
  54. this.restartButton.Text = "Restart";
  55. this.restartButton.UseVisualStyleBackColor = true;
  56. this.restartButton.Click += new System.EventHandler(this.restartButton_Click);
  57. //
  58. // removeControlBtn
  59. //
  60. this.removeControlBtn.Location = new System.Drawing.Point(127, 18);
  61. this.removeControlBtn.Name = "removeControlBtn";
  62. this.removeControlBtn.Size = new System.Drawing.Size(105, 23);
  63. this.removeControlBtn.TabIndex = 2;
  64. this.removeControlBtn.Text = "Stop";
  65. this.removeControlBtn.UseVisualStyleBackColor = true;
  66. this.removeControlBtn.Click += new System.EventHandler(this.removeControlBtn_Click);
  67. //
  68. // progressBar1
  69. //
  70. this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  71. | System.Windows.Forms.AnchorStyles.Right)));
  72. this.progressBar1.Location = new System.Drawing.Point(423, 18);
  73. this.progressBar1.MarqueeAnimationSpeed = 10;
  74. this.progressBar1.Name = "progressBar1";
  75. this.progressBar1.Size = new System.Drawing.Size(512, 23);
  76. this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
  77. this.progressBar1.TabIndex = 3;
  78. //
  79. // pausedCb
  80. //
  81. this.pausedCb.AutoSize = true;
  82. this.pausedCb.Location = new System.Drawing.Point(357, 22);
  83. this.pausedCb.Name = "pausedCb";
  84. this.pausedCb.Size = new System.Drawing.Size(62, 17);
  85. this.pausedCb.TabIndex = 4;
  86. this.pausedCb.Text = "Paused";
  87. this.pausedCb.UseVisualStyleBackColor = true;
  88. this.pausedCb.CheckedChanged += new System.EventHandler(this.pausedCb_CheckedChanged);
  89. //
  90. // spawnBtn
  91. //
  92. this.spawnBtn.Location = new System.Drawing.Point(242, 18);
  93. this.spawnBtn.Name = "spawnBtn";
  94. this.spawnBtn.Size = new System.Drawing.Size(105, 23);
  95. this.spawnBtn.TabIndex = 5;
  96. this.spawnBtn.Text = "Spawn";
  97. this.spawnBtn.UseVisualStyleBackColor = true;
  98. this.spawnBtn.Click += new System.EventHandler(this.spawnBtn_Click);
  99. //
  100. // MainForm
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.ClientSize = new System.Drawing.Size(946, 623);
  105. this.Controls.Add(this.spawnBtn);
  106. this.Controls.Add(this.pausedCb);
  107. this.Controls.Add(this.progressBar1);
  108. this.Controls.Add(this.removeControlBtn);
  109. this.Controls.Add(this.restartButton);
  110. this.Controls.Add(this.urhoSurface);
  111. this.Name = "MainForm";
  112. this.Text = "MainForm";
  113. this.ResumeLayout(false);
  114. this.PerformLayout();
  115. }
  116. #endregion
  117. private Urho.Extensions.WinForms.UrhoSurface urhoSurface;
  118. private System.Windows.Forms.Button restartButton;
  119. private System.Windows.Forms.Button removeControlBtn;
  120. private System.Windows.Forms.ProgressBar progressBar1;
  121. private System.Windows.Forms.CheckBox pausedCb;
  122. private System.Windows.Forms.Button spawnBtn;
  123. }
  124. }