PageRenderTime 44ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/onomVS2008SP1/OneNoteXmlViewer/Controls/ContentViewer.Designer.cs

#
C# | 93 lines | 61 code | 6 blank | 26 comment | 3 complexity | 7bbabb222d5a17bb29ae21b589969af6 MD5 | raw file
Possible License(s): AGPL-3.0
  1. namespace Microsoft.Office.OneNote.XmlViewer.Controls
  2. {
  3. partial class ContentViewer
  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 Component 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.viewObject = new Microsoft.Office.OneNote.XmlViewer.Controls.Views.ViewObject();
  29. this.viewHtml = new Microsoft.Office.OneNote.XmlViewer.Controls.Views.ViewHtml();
  30. this.switcher = new Microsoft.Office.OneNote.XmlViewer.Controls.ViewSwitcher();
  31. this.viewXml = new Microsoft.Office.OneNote.XmlViewer.Controls.Views.ViewXml();
  32. this.SuspendLayout();
  33. //
  34. // viewObject
  35. //
  36. this.viewObject.Location = new System.Drawing.Point(370, 277);
  37. this.viewObject.Name = "viewObject";
  38. this.viewObject.RootObject = null;
  39. this.viewObject.Size = new System.Drawing.Size(240, 219);
  40. this.viewObject.TabIndex = 4;
  41. this.viewObject.Visible = false;
  42. //
  43. // viewHtml
  44. //
  45. this.viewHtml.Location = new System.Drawing.Point(370, 75);
  46. this.viewHtml.Name = "viewHtml";
  47. this.viewHtml.Size = new System.Drawing.Size(240, 195);
  48. this.viewHtml.TabIndex = 3;
  49. this.viewHtml.Visible = false;
  50. //
  51. // switcher
  52. //
  53. this.switcher.CurrentView = Microsoft.Office.OneNote.XmlViewer.Controls.ViewType.Xml;
  54. this.switcher.Dock = System.Windows.Forms.DockStyle.Bottom;
  55. this.switcher.Location = new System.Drawing.Point(0, 556);
  56. this.switcher.Name = "switcher";
  57. this.switcher.Size = new System.Drawing.Size(708, 30);
  58. this.switcher.TabIndex = 1;
  59. this.switcher.CurrentViewChanged += new System.EventHandler(this.OnViewChanged);
  60. //
  61. // viewXml
  62. //
  63. this.viewXml.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.viewXml.Location = new System.Drawing.Point(0, 0);
  65. this.viewXml.Name = "viewXml";
  66. this.viewXml.Size = new System.Drawing.Size(708, 556);
  67. this.viewXml.TabIndex = 2;
  68. //
  69. // ContentViewer
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.Controls.Add(this.viewObject);
  74. this.Controls.Add(this.viewHtml);
  75. this.Controls.Add(this.viewXml);
  76. this.Controls.Add(this.switcher);
  77. this.Name = "ContentViewer";
  78. this.Size = new System.Drawing.Size(708, 586);
  79. this.ResumeLayout(false);
  80. }
  81. #endregion
  82. private ViewSwitcher switcher;
  83. private Microsoft.Office.OneNote.XmlViewer.Controls.Views.ViewXml viewXml;
  84. private Microsoft.Office.OneNote.XmlViewer.Controls.Views.ViewHtml viewHtml;
  85. private Microsoft.Office.OneNote.XmlViewer.Controls.Views.ViewObject viewObject;
  86. }
  87. }