namespace Hawkeye.VisionBuilder.Features.ImagePreview { partial class ImagePreviewPanel { /// /// 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(ImagePreviewPanel)); toolStrip1 = new ToolStrip(); btnFit = new ToolStripButton(); toolStrip1.SuspendLayout(); SuspendLayout(); // // toolStrip1 // toolStrip1.Items.AddRange(new ToolStripItem[] { btnFit }); toolStrip1.Location = new Point(0, 0); toolStrip1.Name = "toolStrip1"; toolStrip1.Size = new Size(800, 25); toolStrip1.TabIndex = 0; toolStrip1.Text = "toolStrip1"; // // btnFit // btnFit.DisplayStyle = ToolStripItemDisplayStyle.Text; btnFit.Image = (Image)resources.GetObject("btnFit.Image"); btnFit.ImageTransparentColor = Color.Magenta; btnFit.Name = "btnFit"; btnFit.Size = new Size(24, 22); btnFit.Text = "Fit"; btnFit.Click += btnFit_Click; // // ImagePreviewPanel // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(toolStrip1); DoubleBuffered = true; Name = "ImagePreviewPanel"; Text = "Image Preview"; toolStrip1.ResumeLayout(false); toolStrip1.PerformLayout(); ResumeLayout(false); PerformLayout(); } #endregion private ImagePreviewControl imagePreviewControl; private ToolStrip toolStrip1; private ToolStripButton btnFit; } }