FormMain.Designer.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. namespace LwipMibViewer
  2. {
  3. partial class FormMain
  4. {
  5. /// <summary>
  6. /// Erforderliche Designervariable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Verwendete Ressourcen bereinigen.
  11. /// </summary>
  12. /// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls 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 Vom Windows Form-Designer generierter Code
  22. /// <summary>
  23. /// Erforderliche Methode für die Designerunterstützung.
  24. /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
  30. this.treeMib = new System.Windows.Forms.TreeView();
  31. this.imagelistTreeNodeImages = new System.Windows.Forms.ImageList(this.components);
  32. this.splitContainerMain = new System.Windows.Forms.SplitContainer();
  33. this.listviewNodeDetails = new System.Windows.Forms.ListView();
  34. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  36. this.toolStripMain = new System.Windows.Forms.ToolStrip();
  37. this.toolbuttonOpenMib = new System.Windows.Forms.ToolStripButton();
  38. this.dialogOpenMib = new System.Windows.Forms.OpenFileDialog();
  39. ((System.ComponentModel.ISupportInitialize)(this.splitContainerMain)).BeginInit();
  40. this.splitContainerMain.Panel1.SuspendLayout();
  41. this.splitContainerMain.Panel2.SuspendLayout();
  42. this.splitContainerMain.SuspendLayout();
  43. this.toolStripMain.SuspendLayout();
  44. this.SuspendLayout();
  45. //
  46. // treeMib
  47. //
  48. this.treeMib.Dock = System.Windows.Forms.DockStyle.Fill;
  49. this.treeMib.ImageIndex = 0;
  50. this.treeMib.ImageList = this.imagelistTreeNodeImages;
  51. this.treeMib.Location = new System.Drawing.Point(0, 0);
  52. this.treeMib.Name = "treeMib";
  53. this.treeMib.SelectedImageIndex = 0;
  54. this.treeMib.Size = new System.Drawing.Size(1028, 418);
  55. this.treeMib.TabIndex = 0;
  56. this.treeMib.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeMib_AfterSelect);
  57. //
  58. // imagelistTreeNodeImages
  59. //
  60. this.imagelistTreeNodeImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imagelistTreeNodeImages.ImageStream")));
  61. this.imagelistTreeNodeImages.TransparentColor = System.Drawing.Color.Transparent;
  62. this.imagelistTreeNodeImages.Images.SetKeyName(0, "ntimgContainer");
  63. this.imagelistTreeNodeImages.Images.SetKeyName(1, "ntimgTable");
  64. this.imagelistTreeNodeImages.Images.SetKeyName(2, "ntimgRow");
  65. this.imagelistTreeNodeImages.Images.SetKeyName(3, "ntimgColumn");
  66. this.imagelistTreeNodeImages.Images.SetKeyName(4, "ntimgScalar");
  67. this.imagelistTreeNodeImages.Images.SetKeyName(5, "ntimgUnknown");
  68. //
  69. // splitContainerMain
  70. //
  71. this.splitContainerMain.Dock = System.Windows.Forms.DockStyle.Fill;
  72. this.splitContainerMain.Location = new System.Drawing.Point(0, 25);
  73. this.splitContainerMain.Name = "splitContainerMain";
  74. this.splitContainerMain.Orientation = System.Windows.Forms.Orientation.Horizontal;
  75. //
  76. // splitContainerMain.Panel1
  77. //
  78. this.splitContainerMain.Panel1.Controls.Add(this.treeMib);
  79. //
  80. // splitContainerMain.Panel2
  81. //
  82. this.splitContainerMain.Panel2.Controls.Add(this.listviewNodeDetails);
  83. this.splitContainerMain.Size = new System.Drawing.Size(1028, 625);
  84. this.splitContainerMain.SplitterDistance = 418;
  85. this.splitContainerMain.TabIndex = 1;
  86. //
  87. // listviewNodeDetails
  88. //
  89. this.listviewNodeDetails.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  90. this.columnHeader1,
  91. this.columnHeader2});
  92. this.listviewNodeDetails.Dock = System.Windows.Forms.DockStyle.Fill;
  93. this.listviewNodeDetails.FullRowSelect = true;
  94. this.listviewNodeDetails.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
  95. this.listviewNodeDetails.Location = new System.Drawing.Point(0, 0);
  96. this.listviewNodeDetails.Name = "listviewNodeDetails";
  97. this.listviewNodeDetails.Size = new System.Drawing.Size(1028, 203);
  98. this.listviewNodeDetails.TabIndex = 0;
  99. this.listviewNodeDetails.UseCompatibleStateImageBehavior = false;
  100. this.listviewNodeDetails.View = System.Windows.Forms.View.Details;
  101. //
  102. // columnHeader1
  103. //
  104. this.columnHeader1.Text = "";
  105. this.columnHeader1.Width = 150;
  106. //
  107. // columnHeader2
  108. //
  109. this.columnHeader2.Text = "";
  110. this.columnHeader2.Width = 777;
  111. //
  112. // toolStripMain
  113. //
  114. this.toolStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  115. this.toolbuttonOpenMib});
  116. this.toolStripMain.Location = new System.Drawing.Point(0, 0);
  117. this.toolStripMain.Name = "toolStripMain";
  118. this.toolStripMain.Size = new System.Drawing.Size(1028, 25);
  119. this.toolStripMain.TabIndex = 2;
  120. //
  121. // toolbuttonOpenMib
  122. //
  123. this.toolbuttonOpenMib.Image = ((System.Drawing.Image)(resources.GetObject("toolbuttonOpenMib.Image")));
  124. this.toolbuttonOpenMib.Name = "toolbuttonOpenMib";
  125. this.toolbuttonOpenMib.Size = new System.Drawing.Size(65, 22);
  126. this.toolbuttonOpenMib.Text = "Open...";
  127. this.toolbuttonOpenMib.Click += new System.EventHandler(this.toolbuttonOpenMib_Click);
  128. //
  129. // FormMain
  130. //
  131. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  132. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  133. this.ClientSize = new System.Drawing.Size(1028, 650);
  134. this.Controls.Add(this.splitContainerMain);
  135. this.Controls.Add(this.toolStripMain);
  136. this.Name = "FormMain";
  137. this.Text = "MIB Viewer";
  138. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  139. this.splitContainerMain.Panel1.ResumeLayout(false);
  140. this.splitContainerMain.Panel2.ResumeLayout(false);
  141. ((System.ComponentModel.ISupportInitialize)(this.splitContainerMain)).EndInit();
  142. this.splitContainerMain.ResumeLayout(false);
  143. this.toolStripMain.ResumeLayout(false);
  144. this.toolStripMain.PerformLayout();
  145. this.ResumeLayout(false);
  146. this.PerformLayout();
  147. }
  148. #endregion
  149. private System.Windows.Forms.TreeView treeMib;
  150. private System.Windows.Forms.SplitContainer splitContainerMain;
  151. private System.Windows.Forms.ListView listviewNodeDetails;
  152. private System.Windows.Forms.ColumnHeader columnHeader1;
  153. private System.Windows.Forms.ColumnHeader columnHeader2;
  154. private System.Windows.Forms.ImageList imagelistTreeNodeImages;
  155. private System.Windows.Forms.ToolStrip toolStripMain;
  156. private System.Windows.Forms.ToolStripButton toolbuttonOpenMib;
  157. private System.Windows.Forms.OpenFileDialog dialogOpenMib;
  158. }
  159. }