check point
This commit is contained in:
77
Hawkeye.VisionBuilder/Features/ImagePreview/ImagePreviewPanel.Designer.cs
generated
Normal file
77
Hawkeye.VisionBuilder/Features/ImagePreview/ImagePreviewPanel.Designer.cs
generated
Normal file
@@ -0,0 +1,77 @@
|
||||
namespace Hawkeye.VisionBuilder.Features.ImagePreview
|
||||
{
|
||||
partial class ImagePreviewPanel
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user