ActionsBuilderForm.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace Max2Babylon
  2. {
  3. partial class ActionsBuilderForm
  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.ActionsBuilderWebView = new System.Windows.Forms.WebBrowser();
  29. this.butCancel = new System.Windows.Forms.Button();
  30. this.butOK = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // ActionsBuilderWebView
  34. //
  35. this.ActionsBuilderWebView.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  36. this.ActionsBuilderWebView.AllowNavigation = false;
  37. this.ActionsBuilderWebView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  38. | System.Windows.Forms.AnchorStyles.Left)
  39. | System.Windows.Forms.AnchorStyles.Right)));
  40. this.ActionsBuilderWebView.IsWebBrowserContextMenuEnabled = false;
  41. this.ActionsBuilderWebView.Location = new System.Drawing.Point(0, 0);
  42. this.ActionsBuilderWebView.MinimumSize = new System.Drawing.Size(20, 20);
  43. this.ActionsBuilderWebView.Name = "ActionsBuilderWebView";
  44. this.ActionsBuilderWebView.Size = new System.Drawing.Size(723, 537);
  45. this.ActionsBuilderWebView.TabIndex = 0;
  46. this.ActionsBuilderWebView.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.ActionsBuilderWebView_DocumentCompleted);
  47. //
  48. // butCancel
  49. //
  50. this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  51. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  52. this.butCancel.Location = new System.Drawing.Point(636, 544);
  53. this.butCancel.Name = "butCancel";
  54. this.butCancel.Size = new System.Drawing.Size(75, 23);
  55. this.butCancel.TabIndex = 1;
  56. this.butCancel.Text = "Cancel";
  57. this.butCancel.UseVisualStyleBackColor = true;
  58. this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
  59. //
  60. // butOK
  61. //
  62. this.butOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  63. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  64. this.butOK.Location = new System.Drawing.Point(555, 544);
  65. this.butOK.Name = "butOK";
  66. this.butOK.Size = new System.Drawing.Size(75, 23);
  67. this.butOK.TabIndex = 2;
  68. this.butOK.Text = "OK";
  69. this.butOK.UseVisualStyleBackColor = true;
  70. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  71. //
  72. // ActionsBuilderForm
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(723, 579);
  77. this.Controls.Add(this.butOK);
  78. this.Controls.Add(this.butCancel);
  79. this.Controls.Add(this.ActionsBuilderWebView);
  80. this.Name = "ActionsBuilderForm";
  81. this.Text = "Babylon.js Actions Builder";
  82. this.Activated += new System.EventHandler(this.ActionsBuilderForm_Activated);
  83. this.Deactivate += new System.EventHandler(this.ActionsBuilderForm_Deactivate);
  84. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ActionsBuilderForm_FormClosed);
  85. this.Load += new System.EventHandler(this.ActionsBuilderForm_Load);
  86. this.ResumeLayout(false);
  87. }
  88. #endregion
  89. private System.Windows.Forms.WebBrowser ActionsBuilderWebView;
  90. private System.Windows.Forms.Button butCancel;
  91. private System.Windows.Forms.Button butOK;
  92. }
  93. }