mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 11:18:47 +08:00
343 lines
18 KiB
C#
343 lines
18 KiB
C#
|
|
namespace Sample.Net5Winform
|
|
{
|
|
partial class TestForm
|
|
{
|
|
/// <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(TestForm));
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
this.btnSources = new System.Windows.Forms.ToolStripDropDownButton();
|
|
this.sepSourceList = new System.Windows.Forms.ToolStripSeparator();
|
|
this.reloadSourcesListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.btnStartCapture = new System.Windows.Forms.ToolStripButton();
|
|
this.btnStopScan = new System.Windows.Forms.ToolStripButton();
|
|
this.btnSaveImage = new System.Windows.Forms.ToolStripButton();
|
|
this.panelOptions = new System.Windows.Forms.TableLayoutPanel();
|
|
this.groupDuplex = new System.Windows.Forms.GroupBox();
|
|
this.ckDuplex = new System.Windows.Forms.CheckBox();
|
|
this.groupSize = new System.Windows.Forms.GroupBox();
|
|
this.comboSize = new System.Windows.Forms.ComboBox();
|
|
this.groupDepth = new System.Windows.Forms.GroupBox();
|
|
this.comboDepth = new System.Windows.Forms.ComboBox();
|
|
this.groupDPI = new System.Windows.Forms.GroupBox();
|
|
this.comboDPI = new System.Windows.Forms.ComboBox();
|
|
this.btnAllSettings = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.toolStrip1.SuspendLayout();
|
|
this.panelOptions.SuspendLayout();
|
|
this.groupDuplex.SuspendLayout();
|
|
this.groupSize.SuspendLayout();
|
|
this.groupDepth.SuspendLayout();
|
|
this.groupDPI.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pictureBox1.Location = new System.Drawing.Point(259, 25);
|
|
this.pictureBox1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(677, 500);
|
|
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
this.pictureBox1.TabIndex = 1;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// saveFileDialog1
|
|
//
|
|
this.saveFileDialog1.FileName = "Test";
|
|
this.saveFileDialog1.Filter = "png files|*.png";
|
|
this.saveFileDialog1.Title = "Save Image";
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.btnSources,
|
|
this.btnStartCapture,
|
|
this.btnStopScan,
|
|
this.btnSaveImage});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Size = new System.Drawing.Size(936, 25);
|
|
this.toolStrip1.TabIndex = 2;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// btnSources
|
|
//
|
|
this.btnSources.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
this.btnSources.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.sepSourceList,
|
|
this.reloadSourcesListToolStripMenuItem});
|
|
this.btnSources.Image = ((System.Drawing.Image)(resources.GetObject("btnSources.Image")));
|
|
this.btnSources.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnSources.Name = "btnSources";
|
|
this.btnSources.Size = new System.Drawing.Size(94, 22);
|
|
this.btnSources.Text = "Select &sources";
|
|
this.btnSources.DropDownOpening += new System.EventHandler(this.btnSources_DropDownOpening);
|
|
//
|
|
// sepSourceList
|
|
//
|
|
this.sepSourceList.Name = "sepSourceList";
|
|
this.sepSourceList.Size = new System.Drawing.Size(168, 6);
|
|
//
|
|
// reloadSourcesListToolStripMenuItem
|
|
//
|
|
this.reloadSourcesListToolStripMenuItem.Name = "reloadSourcesListToolStripMenuItem";
|
|
this.reloadSourcesListToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
|
|
this.reloadSourcesListToolStripMenuItem.Text = "&Reload sources list";
|
|
this.reloadSourcesListToolStripMenuItem.Click += new System.EventHandler(this.reloadSourcesListToolStripMenuItem_Click);
|
|
//
|
|
// btnStartCapture
|
|
//
|
|
this.btnStartCapture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
this.btnStartCapture.Enabled = false;
|
|
this.btnStartCapture.Image = ((System.Drawing.Image)(resources.GetObject("btnStartCapture.Image")));
|
|
this.btnStartCapture.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnStartCapture.Name = "btnStartCapture";
|
|
this.btnStartCapture.Size = new System.Drawing.Size(62, 22);
|
|
this.btnStartCapture.Text = "S&tart scan";
|
|
this.btnStartCapture.Click += new System.EventHandler(this.btnStartCapture_Click);
|
|
//
|
|
// btnStopScan
|
|
//
|
|
this.btnStopScan.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
this.btnStopScan.Enabled = false;
|
|
this.btnStopScan.Image = ((System.Drawing.Image)(resources.GetObject("btnStopScan.Image")));
|
|
this.btnStopScan.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnStopScan.Name = "btnStopScan";
|
|
this.btnStopScan.Size = new System.Drawing.Size(62, 22);
|
|
this.btnStopScan.Text = "Sto&p scan";
|
|
this.btnStopScan.Click += new System.EventHandler(this.btnStopScan_Click);
|
|
//
|
|
// btnSaveImage
|
|
//
|
|
this.btnSaveImage.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
this.btnSaveImage.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveImage.Image")));
|
|
this.btnSaveImage.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnSaveImage.Name = "btnSaveImage";
|
|
this.btnSaveImage.Size = new System.Drawing.Size(71, 22);
|
|
this.btnSaveImage.Text = "S&ave image";
|
|
this.btnSaveImage.Click += new System.EventHandler(this.btnSaveImage_Click);
|
|
//
|
|
// panelOptions
|
|
//
|
|
this.panelOptions.AutoScroll = true;
|
|
this.panelOptions.ColumnCount = 1;
|
|
this.panelOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.panelOptions.Controls.Add(this.groupDuplex, 0, 3);
|
|
this.panelOptions.Controls.Add(this.groupSize, 0, 2);
|
|
this.panelOptions.Controls.Add(this.groupDepth, 0, 1);
|
|
this.panelOptions.Controls.Add(this.groupDPI, 0, 0);
|
|
this.panelOptions.Controls.Add(this.btnAllSettings, 0, 6);
|
|
this.panelOptions.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.panelOptions.Location = new System.Drawing.Point(0, 25);
|
|
this.panelOptions.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.panelOptions.Name = "panelOptions";
|
|
this.panelOptions.RowCount = 7;
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F));
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F));
|
|
this.panelOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F));
|
|
this.panelOptions.Size = new System.Drawing.Size(259, 500);
|
|
this.panelOptions.TabIndex = 3;
|
|
//
|
|
// groupDuplex
|
|
//
|
|
this.groupDuplex.Controls.Add(this.ckDuplex);
|
|
this.groupDuplex.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.groupDuplex.Enabled = false;
|
|
this.groupDuplex.Location = new System.Drawing.Point(9, 231);
|
|
this.groupDuplex.Margin = new System.Windows.Forms.Padding(9, 9, 9, 9);
|
|
this.groupDuplex.Name = "groupDuplex";
|
|
this.groupDuplex.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.groupDuplex.Size = new System.Drawing.Size(241, 67);
|
|
this.groupDuplex.TabIndex = 6;
|
|
this.groupDuplex.TabStop = false;
|
|
this.groupDuplex.Text = "Duplex";
|
|
//
|
|
// ckDuplex
|
|
//
|
|
this.ckDuplex.AutoSize = true;
|
|
this.ckDuplex.Location = new System.Drawing.Point(21, 28);
|
|
this.ckDuplex.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.ckDuplex.Name = "ckDuplex";
|
|
this.ckDuplex.Size = new System.Drawing.Size(68, 19);
|
|
this.ckDuplex.TabIndex = 0;
|
|
this.ckDuplex.Text = "Enabled";
|
|
this.ckDuplex.UseVisualStyleBackColor = true;
|
|
this.ckDuplex.CheckedChanged += new System.EventHandler(this.ckDuplex_CheckedChanged);
|
|
//
|
|
// groupSize
|
|
//
|
|
this.groupSize.Controls.Add(this.comboSize);
|
|
this.groupSize.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.groupSize.Enabled = false;
|
|
this.groupSize.Location = new System.Drawing.Point(9, 157);
|
|
this.groupSize.Margin = new System.Windows.Forms.Padding(9, 9, 9, 3);
|
|
this.groupSize.Name = "groupSize";
|
|
this.groupSize.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.groupSize.Size = new System.Drawing.Size(241, 62);
|
|
this.groupSize.TabIndex = 5;
|
|
this.groupSize.TabStop = false;
|
|
this.groupSize.Text = "Size";
|
|
//
|
|
// comboSize
|
|
//
|
|
this.comboSize.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.comboSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboSize.FormattingEnabled = true;
|
|
this.comboSize.Location = new System.Drawing.Point(21, 22);
|
|
this.comboSize.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.comboSize.Name = "comboSize";
|
|
this.comboSize.Size = new System.Drawing.Size(197, 23);
|
|
this.comboSize.TabIndex = 0;
|
|
this.comboSize.SelectedIndexChanged += new System.EventHandler(this.comboSize_SelectedIndexChanged);
|
|
//
|
|
// groupDepth
|
|
//
|
|
this.groupDepth.Controls.Add(this.comboDepth);
|
|
this.groupDepth.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.groupDepth.Enabled = false;
|
|
this.groupDepth.Location = new System.Drawing.Point(9, 83);
|
|
this.groupDepth.Margin = new System.Windows.Forms.Padding(9, 9, 9, 3);
|
|
this.groupDepth.Name = "groupDepth";
|
|
this.groupDepth.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.groupDepth.Size = new System.Drawing.Size(241, 62);
|
|
this.groupDepth.TabIndex = 4;
|
|
this.groupDepth.TabStop = false;
|
|
this.groupDepth.Text = "Depth";
|
|
//
|
|
// comboDepth
|
|
//
|
|
this.comboDepth.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.comboDepth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboDepth.FormattingEnabled = true;
|
|
this.comboDepth.Location = new System.Drawing.Point(21, 22);
|
|
this.comboDepth.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.comboDepth.Name = "comboDepth";
|
|
this.comboDepth.Size = new System.Drawing.Size(197, 23);
|
|
this.comboDepth.TabIndex = 0;
|
|
this.comboDepth.SelectedIndexChanged += new System.EventHandler(this.comboDepth_SelectedIndexChanged);
|
|
//
|
|
// groupDPI
|
|
//
|
|
this.groupDPI.Controls.Add(this.comboDPI);
|
|
this.groupDPI.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.groupDPI.Enabled = false;
|
|
this.groupDPI.Location = new System.Drawing.Point(9, 9);
|
|
this.groupDPI.Margin = new System.Windows.Forms.Padding(9, 9, 9, 3);
|
|
this.groupDPI.Name = "groupDPI";
|
|
this.groupDPI.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.groupDPI.Size = new System.Drawing.Size(241, 62);
|
|
this.groupDPI.TabIndex = 0;
|
|
this.groupDPI.TabStop = false;
|
|
this.groupDPI.Text = "DPI";
|
|
//
|
|
// comboDPI
|
|
//
|
|
this.comboDPI.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.comboDPI.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboDPI.FormattingEnabled = true;
|
|
this.comboDPI.Location = new System.Drawing.Point(21, 22);
|
|
this.comboDPI.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.comboDPI.Name = "comboDPI";
|
|
this.comboDPI.Size = new System.Drawing.Size(197, 23);
|
|
this.comboDPI.TabIndex = 0;
|
|
this.comboDPI.SelectedIndexChanged += new System.EventHandler(this.comboDPI_SelectedIndexChanged);
|
|
//
|
|
// btnAllSettings
|
|
//
|
|
this.btnAllSettings.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
|
this.btnAllSettings.Enabled = false;
|
|
this.btnAllSettings.Location = new System.Drawing.Point(40, 356);
|
|
this.btnAllSettings.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.btnAllSettings.Name = "btnAllSettings";
|
|
this.btnAllSettings.Size = new System.Drawing.Size(178, 27);
|
|
this.btnAllSettings.TabIndex = 7;
|
|
this.btnAllSettings.Text = "Open driver settings";
|
|
this.btnAllSettings.UseVisualStyleBackColor = true;
|
|
this.btnAllSettings.Click += new System.EventHandler(this.btnAllSettings_Click);
|
|
//
|
|
// TestForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(936, 525);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.panelOptions);
|
|
this.Controls.Add(this.toolStrip1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.Name = "TestForm";
|
|
this.Text = "Test Form";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.panelOptions.ResumeLayout(false);
|
|
this.groupDuplex.ResumeLayout(false);
|
|
this.groupDuplex.PerformLayout();
|
|
this.groupSize.ResumeLayout(false);
|
|
this.groupDepth.ResumeLayout(false);
|
|
this.groupDPI.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
private System.Windows.Forms.ToolStripDropDownButton btnSources;
|
|
private System.Windows.Forms.ToolStripSeparator sepSourceList;
|
|
private System.Windows.Forms.ToolStripMenuItem reloadSourcesListToolStripMenuItem;
|
|
private System.Windows.Forms.TableLayoutPanel panelOptions;
|
|
private System.Windows.Forms.GroupBox groupDPI;
|
|
private System.Windows.Forms.GroupBox groupDepth;
|
|
private System.Windows.Forms.GroupBox groupSize;
|
|
private System.Windows.Forms.GroupBox groupDuplex;
|
|
private System.Windows.Forms.ComboBox comboDPI;
|
|
private System.Windows.Forms.ComboBox comboSize;
|
|
private System.Windows.Forms.ComboBox comboDepth;
|
|
private System.Windows.Forms.ToolStripButton btnStartCapture;
|
|
private System.Windows.Forms.ToolStripButton btnStopScan;
|
|
private System.Windows.Forms.ToolStripButton btnSaveImage;
|
|
private System.Windows.Forms.CheckBox ckDuplex;
|
|
private System.Windows.Forms.Button btnAllSettings;
|
|
}
|
|
}
|
|
|