PageRenderTime 1562ms CodeModel.GetById 23ms RepoModel.GetById 7ms app.codeStats 0ms

/Samples/ExampleToolForm/ExampleForm.Designer.cs

#
C# | 123 lines | 84 code | 7 blank | 32 comment | 3 complexity | a28253c44e4185b76907982116e60827 MD5 | raw file
Possible License(s): Apache-2.0
  1. namespace Delta.Tools.ExampleToolForm
  2. {
  3. partial class ExampleForm
  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.viewportPanel = new System.Windows.Forms.Panel();
  29. this.viewportLabel = new System.Windows.Forms.Label();
  30. this.statusUpdateButton = new System.Windows.Forms.Button();
  31. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  32. this.MenuApp = new System.Windows.Forms.ToolStripMenuItem();
  33. this.menuExitItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.menuStrip1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // viewportPanel
  38. //
  39. this.viewportPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  40. | System.Windows.Forms.AnchorStyles.Left)
  41. | System.Windows.Forms.AnchorStyles.Right)));
  42. this.viewportPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  43. this.viewportPanel.Location = new System.Drawing.Point(44, 75);
  44. this.viewportPanel.Name = "viewportPanel";
  45. this.viewportPanel.Size = new System.Drawing.Size(916, 608);
  46. this.viewportPanel.TabIndex = 2;
  47. //
  48. // viewportLabel
  49. //
  50. this.viewportLabel.AutoSize = true;
  51. this.viewportLabel.Location = new System.Drawing.Point(42, 58);
  52. this.viewportLabel.Name = "viewportLabel";
  53. this.viewportLabel.Size = new System.Drawing.Size(140, 13);
  54. this.viewportLabel.TabIndex = 3;
  55. this.viewportLabel.Text = "ViewportPanel for rendering:";
  56. //
  57. // statusUpdateButton
  58. //
  59. this.statusUpdateButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  60. this.statusUpdateButton.Location = new System.Drawing.Point(815, 46);
  61. this.statusUpdateButton.Name = "statusUpdateButton";
  62. this.statusUpdateButton.Size = new System.Drawing.Size(145, 23);
  63. this.statusUpdateButton.TabIndex = 1;
  64. this.statusUpdateButton.Text = "Show viewport status";
  65. this.statusUpdateButton.UseVisualStyleBackColor = true;
  66. //
  67. // menuStrip1
  68. //
  69. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  70. this.MenuApp});
  71. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  72. this.menuStrip1.Name = "menuStrip1";
  73. this.menuStrip1.Size = new System.Drawing.Size(1008, 24);
  74. this.menuStrip1.TabIndex = 5;
  75. this.menuStrip1.Text = "menuStrip1";
  76. //
  77. // MenuApp
  78. //
  79. this.MenuApp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  80. this.menuExitItem});
  81. this.MenuApp.Name = "MenuApp";
  82. this.MenuApp.Size = new System.Drawing.Size(41, 20);
  83. this.MenuApp.Text = "App";
  84. //
  85. // menuExitItem
  86. //
  87. this.menuExitItem.Name = "menuExitItem";
  88. this.menuExitItem.Size = new System.Drawing.Size(92, 22);
  89. this.menuExitItem.Text = "Exit";
  90. //
  91. // ExampleForm
  92. //
  93. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  94. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  95. this.ClientSize = new System.Drawing.Size(1008, 730);
  96. this.Controls.Add(this.viewportLabel);
  97. this.Controls.Add(this.viewportPanel);
  98. this.Controls.Add(this.statusUpdateButton);
  99. this.Controls.Add(this.menuStrip1);
  100. this.MainMenuStrip = this.menuStrip1;
  101. this.Name = "ExampleForm";
  102. this.Text = "Example Form";
  103. this.menuStrip1.ResumeLayout(false);
  104. this.menuStrip1.PerformLayout();
  105. this.ResumeLayout(false);
  106. this.PerformLayout();
  107. }
  108. #endregion
  109. internal System.Windows.Forms.Panel viewportPanel;
  110. private System.Windows.Forms.Label viewportLabel;
  111. private System.Windows.Forms.Button statusUpdateButton;
  112. private System.Windows.Forms.MenuStrip menuStrip1;
  113. private System.Windows.Forms.ToolStripMenuItem MenuApp;
  114. private System.Windows.Forms.ToolStripMenuItem menuExitItem;
  115. }
  116. }