ActionsBuilderForm.Designer.cs 4.3 KB

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