ExceptionDlg.designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* ========================================================================
  2. * Copyright (c) 2005-2019 The OPC Foundation, Inc. All rights reserved.
  3. *
  4. * OPC Foundation MIT License 1.00
  5. *
  6. * Permission is hereby granted, free of charge, to any person
  7. * obtaining a copy of this software and associated documentation
  8. * files (the "Software"), to deal in the Software without
  9. * restriction, including without limitation the rights to use,
  10. * copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the
  12. * Software is furnished to do so, subject to the following
  13. * conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be
  16. * included in all copies or substantial portions of the Software.
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  21. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  22. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  23. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. * OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. * The complete license agreement can be found here:
  27. * http://opcfoundation.org/License/MIT/1.00/
  28. * ======================================================================*/
  29. namespace OpcUaHelper
  30. {
  31. partial class ExceptionDlg
  32. {
  33. /// <summary>
  34. /// Required designer variable.
  35. /// </summary>
  36. private System.ComponentModel.IContainer components = null;
  37. /// <summary>
  38. /// Clean up any resources being used.
  39. /// </summary>
  40. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  41. protected override void Dispose(bool disposing)
  42. {
  43. if (disposing && (components != null))
  44. {
  45. components.Dispose();
  46. }
  47. base.Dispose(disposing);
  48. }
  49. #region Windows Form Designer generated code
  50. /// <summary>
  51. /// Required method for Designer support - do not modify
  52. /// the contents of this method with the code editor.
  53. /// </summary>
  54. private void InitializeComponent()
  55. {
  56. this.BottomPN = new System.Windows.Forms.Panel();
  57. this.ShowStackTracesCK = new System.Windows.Forms.CheckBox();
  58. this.CloseBTN = new System.Windows.Forms.Button();
  59. this.MainPN = new System.Windows.Forms.Panel();
  60. this.ExceptionBrowser = new System.Windows.Forms.WebBrowser();
  61. this.BottomPN.SuspendLayout();
  62. this.MainPN.SuspendLayout();
  63. this.SuspendLayout();
  64. //
  65. // BottomPN
  66. //
  67. this.BottomPN.Controls.Add(this.ShowStackTracesCK);
  68. this.BottomPN.Controls.Add(this.CloseBTN);
  69. this.BottomPN.Dock = System.Windows.Forms.DockStyle.Bottom;
  70. this.BottomPN.Location = new System.Drawing.Point(0, 181);
  71. this.BottomPN.Name = "BottomPN";
  72. this.BottomPN.Size = new System.Drawing.Size(780, 29);
  73. this.BottomPN.TabIndex = 1;
  74. //
  75. // ShowStackTracesCK
  76. //
  77. this.ShowStackTracesCK.AutoSize = true;
  78. this.ShowStackTracesCK.Location = new System.Drawing.Point(3, 7);
  79. this.ShowStackTracesCK.Name = "ShowStackTracesCK";
  80. this.ShowStackTracesCK.Size = new System.Drawing.Size(138, 17);
  81. this.ShowStackTracesCK.TabIndex = 1;
  82. this.ShowStackTracesCK.Text = "Show Exception Details";
  83. this.ShowStackTracesCK.UseVisualStyleBackColor = true;
  84. this.ShowStackTracesCK.CheckedChanged += new System.EventHandler(this.ShowStackTracesCK_CheckedChanged);
  85. //
  86. // CloseBTN
  87. //
  88. this.CloseBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
  89. this.CloseBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  90. this.CloseBTN.Location = new System.Drawing.Point(353, 3);
  91. this.CloseBTN.Name = "CloseBTN";
  92. this.CloseBTN.Size = new System.Drawing.Size(75, 23);
  93. this.CloseBTN.TabIndex = 0;
  94. this.CloseBTN.Text = "Close";
  95. this.CloseBTN.UseVisualStyleBackColor = true;
  96. //
  97. // MainPN
  98. //
  99. this.MainPN.AutoSize = true;
  100. this.MainPN.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  101. this.MainPN.Controls.Add(this.ExceptionBrowser);
  102. this.MainPN.Dock = System.Windows.Forms.DockStyle.Fill;
  103. this.MainPN.Location = new System.Drawing.Point(0, 0);
  104. this.MainPN.Name = "MainPN";
  105. this.MainPN.Size = new System.Drawing.Size(780, 181);
  106. this.MainPN.TabIndex = 1;
  107. //
  108. // ExceptionBrowser
  109. //
  110. this.ExceptionBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
  111. this.ExceptionBrowser.Location = new System.Drawing.Point(0, 0);
  112. this.ExceptionBrowser.MinimumSize = new System.Drawing.Size(20, 20);
  113. this.ExceptionBrowser.Name = "ExceptionBrowser";
  114. this.ExceptionBrowser.ScriptErrorsSuppressed = true;
  115. this.ExceptionBrowser.Size = new System.Drawing.Size(780, 181);
  116. this.ExceptionBrowser.TabIndex = 1;
  117. //
  118. // ExceptionDlg
  119. //
  120. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  121. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  122. this.AutoSize = true;
  123. this.ClientSize = new System.Drawing.Size(780, 210);
  124. this.Controls.Add(this.MainPN);
  125. this.Controls.Add(this.BottomPN);
  126. this.MaximumSize = new System.Drawing.Size(4096, 4096);
  127. this.Name = "ExceptionDlg";
  128. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  129. this.Text = "Exception";
  130. this.BottomPN.ResumeLayout(false);
  131. this.BottomPN.PerformLayout();
  132. this.MainPN.ResumeLayout(false);
  133. this.ResumeLayout(false);
  134. this.PerformLayout();
  135. }
  136. #endregion
  137. private System.Windows.Forms.Panel BottomPN;
  138. private System.Windows.Forms.Button CloseBTN;
  139. private System.Windows.Forms.Panel MainPN;
  140. private System.Windows.Forms.WebBrowser ExceptionBrowser;
  141. private System.Windows.Forms.CheckBox ShowStackTracesCK;
  142. }
  143. }