namespace HelloAddIn { partial class DocumentView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label1.Location = new System.Drawing.Point(19, 18); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(421, 419); this.label1.TabIndex = 0; this.label1.Text = "I\'m an example Document View\r\n\r\nDocument views are tabbed\r\n\r\nBecuase I inherit fr" + "om ViewContentBase (and not SingletonViewContent), you can spawn many instances " + "of me"; // // DocumentView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.label1); this.Name = "DocumentView"; this.Size = new System.Drawing.Size(459, 460); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Label label1; } }