namespace BizHawk.Client.EmuHawk { partial class GBPrinterView { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GBPrinterView)); this.paperView = new BmpView(); this.label1 = new System.Windows.Forms.Label(); this.paperScroll = new System.Windows.Forms.VScrollBar(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.editToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(336, 24); this.menuStrip1.TabIndex = 2; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.saveImageToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // saveImageToolStripMenuItem // this.saveImageToolStripMenuItem.Name = "saveImageToolStripMenuItem"; this.saveImageToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.saveImageToolStripMenuItem.Size = new System.Drawing.Size(183, 22); this.saveImageToolStripMenuItem.Text = "&Save Image..."; this.saveImageToolStripMenuItem.Click += new System.EventHandler(this.saveImageToolStripMenuItem_Click); // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.copyToolStripMenuItem}); this.editToolStripMenuItem.Name = "editToolStripMenuItem"; this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20); this.editToolStripMenuItem.Text = "&Edit"; // // copyToolStripMenuItem // this.copyToolStripMenuItem.Name = "copyToolStripMenuItem"; this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.copyToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.copyToolStripMenuItem.Text = "&Copy"; this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click); // // paperView // this.paperView.Name = "paperView"; this.paperView.Location = new System.Drawing.Point(0, 48); this.paperView.Size = new System.Drawing.Size(320, 320); this.paperView.BackColor = System.Drawing.Color.Black; this.paperView.TabIndex = 0; // // label1 // this.label1.Name = "label1"; this.label1.Location = new System.Drawing.Point(0, 24); this.label1.Size = new System.Drawing.Size(336, 24); this.label1.Text = "Note: the printer is only connected while this window is open."; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // paperScroll // this.paperScroll.Name = "paperScroll"; this.paperScroll.Location = new System.Drawing.Point(320, 48); this.paperScroll.Size = new System.Drawing.Size(16, 320); this.paperScroll.Minimum = 0; this.paperScroll.SmallChange = 8; this.paperScroll.LargeChange = 160; this.paperScroll.ValueChanged += PaperScroll_ValueChanged; // // GBPrinterView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSize = true; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.ClientSize = new System.Drawing.Size(336, 358); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.paperView); this.Controls.Add(this.label1); this.Controls.Add(this.paperScroll); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip1; this.MaximizeBox = false; this.Name = "GBPrinterView"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Printer Viewer"; this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.FormClosed += GBPrinterView_FormClosed; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem saveImageToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem copyToolStripMenuItem; private BmpView paperView; private System.Windows.Forms.Label label1; private System.Windows.Forms.VScrollBar paperScroll; } }