576 lines
23 KiB
C#
576 lines
23 KiB
C#
namespace BlubbFish.Applications.Barcodes.Inventree {
|
|
partial class Form1
|
|
{
|
|
/// <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(Form1));
|
|
this.pictureBox1 = new PictureBox();
|
|
this.printDocument1 = new System.Drawing.Printing.PrintDocument();
|
|
this._buttonPrintPreview = new Button();
|
|
this.printPreviewDialog1 = new PrintPreviewDialog();
|
|
this._listBox_Printer = new ListBox();
|
|
this.label1 = new Label();
|
|
this._listBox_PaperSize = new ListBox();
|
|
this._listBox_PaperSources = new ListBox();
|
|
this._listBox_PrinterResolution = new ListBox();
|
|
this._buttonPrint = new Button();
|
|
this.label2 = new Label();
|
|
this.label3 = new Label();
|
|
this.label4 = new Label();
|
|
this.label5 = new Label();
|
|
this._textBox_ServerAddress = new TextBox();
|
|
this._textBox_AuthToken = new TextBox();
|
|
this._buttonQueryPo = new Button();
|
|
this.comboBox1 = new ComboBox();
|
|
this.statusStrip1 = new StatusStrip();
|
|
this._statusLabel = new ToolStripStatusLabel();
|
|
this._mainTabBox = new TabControl();
|
|
this.Label = new TabPage();
|
|
this.labelCount = new Label();
|
|
this.buttonNone = new Button();
|
|
this.buttonAll = new Button();
|
|
this.dataGridView1 = new DataGridView();
|
|
this.Column4 = new DataGridViewTextBoxColumn();
|
|
this.Column1 = new DataGridViewCheckBoxColumn();
|
|
this.Column6 = new DataGridViewTextBoxColumn();
|
|
this.Column2 = new DataGridViewTextBoxColumn();
|
|
this.Column3 = new DataGridViewTextBoxColumn();
|
|
this.Got = new DataGridViewTextBoxColumn();
|
|
this._textServerName = new Label();
|
|
this.label8 = new Label();
|
|
this._textPrinterName = new Label();
|
|
this.label6 = new Label();
|
|
this.Einstellungen = new TabPage();
|
|
this._buttonSaveSettings1 = new Button();
|
|
this.label11 = new Label();
|
|
this.label10 = new Label();
|
|
this.Druckereinstellungen = new TabPage();
|
|
this._checkBox_Landscape = new CheckBox();
|
|
this._buttonSaveSettings2 = new Button();
|
|
((System.ComponentModel.ISupportInitialize)this.pictureBox1).BeginInit();
|
|
this.statusStrip1.SuspendLayout();
|
|
this._mainTabBox.SuspendLayout();
|
|
this.Label.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)this.dataGridView1).BeginInit();
|
|
this.Einstellungen.SuspendLayout();
|
|
this.Druckereinstellungen.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Location = new Point(1298, 187);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new Size(488, 228);
|
|
this.pictureBox1.TabIndex = 0;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// printDocument1
|
|
//
|
|
this.printDocument1.PrintPage += this.PrintDocument1_PrintPage;
|
|
//
|
|
// _buttonPrintPreview
|
|
//
|
|
this._buttonPrintPreview.Location = new Point(16, 608);
|
|
this._buttonPrintPreview.Name = "_buttonPrintPreview";
|
|
this._buttonPrintPreview.Size = new Size(143, 29);
|
|
this._buttonPrintPreview.TabIndex = 1;
|
|
this._buttonPrintPreview.Text = "Druckvorschau";
|
|
this._buttonPrintPreview.UseVisualStyleBackColor = true;
|
|
this._buttonPrintPreview.Click += this.ButtonPrintPreview_Click;
|
|
//
|
|
// printPreviewDialog1
|
|
//
|
|
this.printPreviewDialog1.AutoScrollMargin = new Size(0, 0);
|
|
this.printPreviewDialog1.AutoScrollMinSize = new Size(0, 0);
|
|
this.printPreviewDialog1.ClientSize = new Size(400, 300);
|
|
this.printPreviewDialog1.Document = this.printDocument1;
|
|
this.printPreviewDialog1.Enabled = true;
|
|
this.printPreviewDialog1.Icon = (Icon)resources.GetObject("printPreviewDialog1.Icon");
|
|
this.printPreviewDialog1.Name = "Druckvorschau";
|
|
this.printPreviewDialog1.Visible = false;
|
|
//
|
|
// _listBox_Printer
|
|
//
|
|
this._listBox_Printer.FormattingEnabled = true;
|
|
this._listBox_Printer.Location = new Point(6, 135);
|
|
this._listBox_Printer.Name = "_listBox_Printer";
|
|
this._listBox_Printer.Size = new Size(676, 124);
|
|
this._listBox_Printer.TabIndex = 3;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new Point(6, 112);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new Size(63, 20);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "Drucker:";
|
|
//
|
|
// _listBox_PaperSize
|
|
//
|
|
this._listBox_PaperSize.FormattingEnabled = true;
|
|
this._listBox_PaperSize.Location = new Point(6, 26);
|
|
this._listBox_PaperSize.Name = "_listBox_PaperSize";
|
|
this._listBox_PaperSize.Size = new Size(676, 84);
|
|
this._listBox_PaperSize.TabIndex = 5;
|
|
//
|
|
// _listBox_PaperSources
|
|
//
|
|
this._listBox_PaperSources.FormattingEnabled = true;
|
|
this._listBox_PaperSources.Location = new Point(6, 136);
|
|
this._listBox_PaperSources.Name = "_listBox_PaperSources";
|
|
this._listBox_PaperSources.Size = new Size(676, 84);
|
|
this._listBox_PaperSources.TabIndex = 6;
|
|
//
|
|
// _listBox_PrinterResolution
|
|
//
|
|
this._listBox_PrinterResolution.FormattingEnabled = true;
|
|
this._listBox_PrinterResolution.Location = new Point(6, 246);
|
|
this._listBox_PrinterResolution.Name = "_listBox_PrinterResolution";
|
|
this._listBox_PrinterResolution.Size = new Size(676, 84);
|
|
this._listBox_PrinterResolution.TabIndex = 7;
|
|
//
|
|
// _buttonPrint
|
|
//
|
|
this._buttonPrint.Location = new Point(1711, 608);
|
|
this._buttonPrint.Name = "_buttonPrint";
|
|
this._buttonPrint.Size = new Size(94, 29);
|
|
this._buttonPrint.TabIndex = 8;
|
|
this._buttonPrint.Text = "Drucken";
|
|
this._buttonPrint.UseVisualStyleBackColor = true;
|
|
this._buttonPrint.Click += this.ButtonPrint_Click;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new Point(6, 3);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new Size(100, 20);
|
|
this.label2.TabIndex = 9;
|
|
this.label2.Text = "Papiergrößen:";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new Point(6, 113);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new Size(102, 20);
|
|
this.label3.TabIndex = 10;
|
|
this.label3.Text = "Papierquellen:";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new Point(6, 223);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new Size(112, 20);
|
|
this.label4.TabIndex = 11;
|
|
this.label4.Text = "Druckauflösung";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Location = new Point(1298, 164);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new Size(68, 20);
|
|
this.label5.TabIndex = 12;
|
|
this.label5.Text = "Vorschau";
|
|
//
|
|
// _textBox_ServerAddress
|
|
//
|
|
this._textBox_ServerAddress.Location = new Point(6, 29);
|
|
this._textBox_ServerAddress.Name = "_textBox_ServerAddress";
|
|
this._textBox_ServerAddress.Size = new Size(676, 27);
|
|
this._textBox_ServerAddress.TabIndex = 13;
|
|
//
|
|
// _textBox_AuthToken
|
|
//
|
|
this._textBox_AuthToken.Location = new Point(6, 82);
|
|
this._textBox_AuthToken.Name = "_textBox_AuthToken";
|
|
this._textBox_AuthToken.Size = new Size(676, 27);
|
|
this._textBox_AuthToken.TabIndex = 14;
|
|
//
|
|
// _buttonQueryPo
|
|
//
|
|
this._buttonQueryPo.Image = Properties.Resources.arrow_reload_24;
|
|
this._buttonQueryPo.Location = new Point(1236, 6);
|
|
this._buttonQueryPo.Name = "_buttonQueryPo";
|
|
this._buttonQueryPo.Size = new Size(56, 29);
|
|
this._buttonQueryPo.TabIndex = 15;
|
|
this._buttonQueryPo.UseVisualStyleBackColor = true;
|
|
this._buttonQueryPo.Click += this.ButtonQueryPo_Click;
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Location = new Point(6, 6);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new Size(1224, 28);
|
|
this.comboBox1.TabIndex = 16;
|
|
this.comboBox1.SelectedIndexChanged += this.comboBox1_SelectedIndexChanged;
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.ImageScalingSize = new Size(20, 20);
|
|
this.statusStrip1.Items.AddRange(new ToolStripItem[] { this._statusLabel });
|
|
this.statusStrip1.Location = new Point(0, 640);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new Size(1821, 26);
|
|
this.statusStrip1.TabIndex = 20;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// _statusLabel
|
|
//
|
|
this._statusLabel.Name = "_statusLabel";
|
|
this._statusLabel.Size = new Size(151, 20);
|
|
this._statusLabel.Text = "toolStripStatusLabel1";
|
|
//
|
|
// _mainTabBox
|
|
//
|
|
this._mainTabBox.Controls.Add(this.Label);
|
|
this._mainTabBox.Controls.Add(this.Einstellungen);
|
|
this._mainTabBox.Controls.Add(this.Druckereinstellungen);
|
|
this._mainTabBox.Location = new Point(12, 12);
|
|
this._mainTabBox.Name = "_mainTabBox";
|
|
this._mainTabBox.SelectedIndex = 0;
|
|
this._mainTabBox.Size = new Size(1797, 590);
|
|
this._mainTabBox.TabIndex = 21;
|
|
//
|
|
// Label
|
|
//
|
|
this.Label.Controls.Add(this.labelCount);
|
|
this.Label.Controls.Add(this.buttonNone);
|
|
this.Label.Controls.Add(this.buttonAll);
|
|
this.Label.Controls.Add(this.dataGridView1);
|
|
this.Label.Controls.Add(this._textServerName);
|
|
this.Label.Controls.Add(this.label8);
|
|
this.Label.Controls.Add(this._textPrinterName);
|
|
this.Label.Controls.Add(this.label6);
|
|
this.Label.Controls.Add(this.label5);
|
|
this.Label.Controls.Add(this._buttonQueryPo);
|
|
this.Label.Controls.Add(this.comboBox1);
|
|
this.Label.Controls.Add(this.pictureBox1);
|
|
this.Label.Location = new Point(4, 29);
|
|
this.Label.Name = "Label";
|
|
this.Label.Padding = new Padding(3);
|
|
this.Label.Size = new Size(1789, 557);
|
|
this.Label.TabIndex = 0;
|
|
this.Label.Text = "Label";
|
|
this.Label.UseVisualStyleBackColor = true;
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new Point(1073, 526);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new Size(219, 20);
|
|
this.labelCount.TabIndex = 28;
|
|
this.labelCount.Text = "Anzahl zu druckender Labels: $x";
|
|
this.labelCount.TextAlign = ContentAlignment.TopRight;
|
|
//
|
|
// buttonNone
|
|
//
|
|
this.buttonNone.Location = new Point(106, 522);
|
|
this.buttonNone.Name = "buttonNone";
|
|
this.buttonNone.Size = new Size(94, 29);
|
|
this.buttonNone.TabIndex = 27;
|
|
this.buttonNone.Text = "Keine";
|
|
this.buttonNone.UseVisualStyleBackColor = true;
|
|
this.buttonNone.Click += this.ButtonNone_Click;
|
|
//
|
|
// buttonAll
|
|
//
|
|
this.buttonAll.Location = new Point(6, 522);
|
|
this.buttonAll.Name = "buttonAll";
|
|
this.buttonAll.Size = new Size(94, 29);
|
|
this.buttonAll.TabIndex = 26;
|
|
this.buttonAll.Text = "Alle";
|
|
this.buttonAll.UseVisualStyleBackColor = true;
|
|
this.buttonAll.Click += this.ButtonAll_Click;
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
this.dataGridView1.AllowUserToResizeRows = false;
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Columns.AddRange(new DataGridViewColumn[] { this.Column4, this.Column1, this.Column6, this.Column2, this.Column3, this.Got });
|
|
this.dataGridView1.EditMode = DataGridViewEditMode.EditOnKeystroke;
|
|
this.dataGridView1.Location = new Point(6, 40);
|
|
this.dataGridView1.MultiSelect = false;
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowHeadersVisible = false;
|
|
this.dataGridView1.RowHeadersWidth = 51;
|
|
this.dataGridView1.ShowEditingIcon = false;
|
|
this.dataGridView1.Size = new Size(1286, 476);
|
|
this.dataGridView1.TabIndex = 25;
|
|
this.dataGridView1.CellContentClick += this.DataGridView1_CellContentClick;
|
|
this.dataGridView1.CellValueChanged += this.DataGridView1_CellValueChanged;
|
|
this.dataGridView1.SelectionChanged += this.DataGridView1_SelectionChanged;
|
|
//
|
|
// Column4
|
|
//
|
|
this.Column4.HeaderText = "Pos";
|
|
this.Column4.MinimumWidth = 45;
|
|
this.Column4.Name = "Column4";
|
|
this.Column4.ReadOnly = true;
|
|
this.Column4.Resizable = DataGridViewTriState.False;
|
|
this.Column4.Width = 45;
|
|
//
|
|
// Column1
|
|
//
|
|
this.Column1.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
|
|
this.Column1.HeaderText = "Drucken";
|
|
this.Column1.MinimumWidth = 70;
|
|
this.Column1.Name = "Column1";
|
|
this.Column1.Resizable = DataGridViewTriState.False;
|
|
this.Column1.Width = 70;
|
|
//
|
|
// Column6
|
|
//
|
|
this.Column6.HeaderText = "Labels";
|
|
this.Column6.MinimumWidth = 60;
|
|
this.Column6.Name = "Column6";
|
|
this.Column6.SortMode = DataGridViewColumnSortMode.NotSortable;
|
|
this.Column6.Width = 60;
|
|
//
|
|
// Column2
|
|
//
|
|
this.Column2.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
this.Column2.HeaderText = "Teil";
|
|
this.Column2.MinimumWidth = 300;
|
|
this.Column2.Name = "Column2";
|
|
this.Column2.ReadOnly = true;
|
|
//
|
|
// Column3
|
|
//
|
|
this.Column3.HeaderText = "SKU";
|
|
this.Column3.MinimumWidth = 150;
|
|
this.Column3.Name = "Column3";
|
|
this.Column3.ReadOnly = true;
|
|
this.Column3.Width = 150;
|
|
//
|
|
// Got
|
|
//
|
|
this.Got.HeaderText = "Got";
|
|
this.Got.MinimumWidth = 50;
|
|
this.Got.Name = "Got";
|
|
this.Got.Width = 50;
|
|
//
|
|
// _textServerName
|
|
//
|
|
this._textServerName.AutoSize = true;
|
|
this._textServerName.Location = new Point(1298, 80);
|
|
this._textServerName.Name = "_textServerName";
|
|
this._textServerName.Size = new Size(93, 20);
|
|
this._textServerName.TabIndex = 23;
|
|
this._textServerName.Text = "$servername";
|
|
//
|
|
// label8
|
|
//
|
|
this.label8.AutoSize = true;
|
|
this.label8.Location = new Point(1298, 60);
|
|
this.label8.Name = "label8";
|
|
this.label8.Size = new Size(53, 20);
|
|
this.label8.TabIndex = 22;
|
|
this.label8.Text = "Server:";
|
|
//
|
|
// _textPrinterName
|
|
//
|
|
this._textPrinterName.AutoSize = true;
|
|
this._textPrinterName.Location = new Point(1298, 23);
|
|
this._textPrinterName.Name = "_textPrinterName";
|
|
this._textPrinterName.Size = new Size(105, 20);
|
|
this._textPrinterName.TabIndex = 21;
|
|
this._textPrinterName.Text = "$Druckername";
|
|
//
|
|
// label6
|
|
//
|
|
this.label6.AutoSize = true;
|
|
this.label6.Location = new Point(1298, 3);
|
|
this.label6.Name = "label6";
|
|
this.label6.Size = new Size(63, 20);
|
|
this.label6.TabIndex = 20;
|
|
this.label6.Text = "Drucker:";
|
|
//
|
|
// Einstellungen
|
|
//
|
|
this.Einstellungen.Controls.Add(this._buttonSaveSettings1);
|
|
this.Einstellungen.Controls.Add(this.label11);
|
|
this.Einstellungen.Controls.Add(this.label10);
|
|
this.Einstellungen.Controls.Add(this._listBox_Printer);
|
|
this.Einstellungen.Controls.Add(this.label1);
|
|
this.Einstellungen.Controls.Add(this._textBox_AuthToken);
|
|
this.Einstellungen.Controls.Add(this._textBox_ServerAddress);
|
|
this.Einstellungen.Location = new Point(4, 29);
|
|
this.Einstellungen.Name = "Einstellungen";
|
|
this.Einstellungen.Padding = new Padding(3);
|
|
this.Einstellungen.Size = new Size(1789, 557);
|
|
this.Einstellungen.TabIndex = 1;
|
|
this.Einstellungen.Text = "Einstellungen";
|
|
this.Einstellungen.UseVisualStyleBackColor = true;
|
|
//
|
|
// _buttonSaveSettings1
|
|
//
|
|
this._buttonSaveSettings1.Location = new Point(6, 338);
|
|
this._buttonSaveSettings1.Name = "_buttonSaveSettings1";
|
|
this._buttonSaveSettings1.Size = new Size(227, 29);
|
|
this._buttonSaveSettings1.TabIndex = 17;
|
|
this._buttonSaveSettings1.Text = "Einstellungen Speichern";
|
|
this._buttonSaveSettings1.UseVisualStyleBackColor = true;
|
|
this._buttonSaveSettings1.Click += this.ButtonSaveSettings_Click;
|
|
//
|
|
// label11
|
|
//
|
|
this.label11.AutoSize = true;
|
|
this.label11.Location = new Point(6, 59);
|
|
this.label11.Name = "label11";
|
|
this.label11.Size = new Size(64, 20);
|
|
this.label11.TabIndex = 16;
|
|
this.label11.Text = "API-Key:";
|
|
//
|
|
// label10
|
|
//
|
|
this.label10.AutoSize = true;
|
|
this.label10.Location = new Point(6, 3);
|
|
this.label10.Name = "label10";
|
|
this.label10.Size = new Size(111, 20);
|
|
this.label10.TabIndex = 15;
|
|
this.label10.Text = "Server-Adresse:";
|
|
//
|
|
// Druckereinstellungen
|
|
//
|
|
this.Druckereinstellungen.Controls.Add(this._checkBox_Landscape);
|
|
this.Druckereinstellungen.Controls.Add(this._buttonSaveSettings2);
|
|
this.Druckereinstellungen.Controls.Add(this._listBox_PaperSize);
|
|
this.Druckereinstellungen.Controls.Add(this.label2);
|
|
this.Druckereinstellungen.Controls.Add(this.label4);
|
|
this.Druckereinstellungen.Controls.Add(this.label3);
|
|
this.Druckereinstellungen.Controls.Add(this._listBox_PrinterResolution);
|
|
this.Druckereinstellungen.Controls.Add(this._listBox_PaperSources);
|
|
this.Druckereinstellungen.Location = new Point(4, 29);
|
|
this.Druckereinstellungen.Name = "Druckereinstellungen";
|
|
this.Druckereinstellungen.Padding = new Padding(3);
|
|
this.Druckereinstellungen.Size = new Size(1789, 557);
|
|
this.Druckereinstellungen.TabIndex = 2;
|
|
this.Druckereinstellungen.Text = "Druckereinstellungen";
|
|
this.Druckereinstellungen.UseVisualStyleBackColor = true;
|
|
//
|
|
// _checkBox_Landscape
|
|
//
|
|
this._checkBox_Landscape.AutoSize = true;
|
|
this._checkBox_Landscape.Location = new Point(581, 339);
|
|
this._checkBox_Landscape.Name = "_checkBox_Landscape";
|
|
this._checkBox_Landscape.Size = new Size(101, 24);
|
|
this._checkBox_Landscape.TabIndex = 23;
|
|
this._checkBox_Landscape.Text = "Landscape";
|
|
this._checkBox_Landscape.UseVisualStyleBackColor = true;
|
|
//
|
|
// _buttonSaveSettings2
|
|
//
|
|
this._buttonSaveSettings2.Location = new Point(6, 336);
|
|
this._buttonSaveSettings2.Name = "_buttonSaveSettings2";
|
|
this._buttonSaveSettings2.Size = new Size(227, 29);
|
|
this._buttonSaveSettings2.TabIndex = 22;
|
|
this._buttonSaveSettings2.Text = "Einstellungen Speichern";
|
|
this._buttonSaveSettings2.UseVisualStyleBackColor = true;
|
|
this._buttonSaveSettings2.Click += this.ButtonSaveSettings_Click;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new SizeF(8F, 20F);
|
|
this.AutoScaleMode = AutoScaleMode.Font;
|
|
this.ClientSize = new Size(1821, 666);
|
|
this.Controls.Add(this._mainTabBox);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this._buttonPrint);
|
|
this.Controls.Add(this._buttonPrintPreview);
|
|
this.Icon = (Icon)resources.GetObject("$this.Icon");
|
|
this.Name = "Form1";
|
|
this.Text = "Inventree PO Label Generator";
|
|
((System.ComponentModel.ISupportInitialize)this.pictureBox1).EndInit();
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this._mainTabBox.ResumeLayout(false);
|
|
this.Label.ResumeLayout(false);
|
|
this.Label.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)this.dataGridView1).EndInit();
|
|
this.Einstellungen.ResumeLayout(false);
|
|
this.Einstellungen.PerformLayout();
|
|
this.Druckereinstellungen.ResumeLayout(false);
|
|
this.Druckereinstellungen.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBox1;
|
|
private System.Drawing.Printing.PrintDocument printDocument1;
|
|
private Button _buttonPrintPreview;
|
|
private PrintPreviewDialog printPreviewDialog1;
|
|
private ListBox _listBox_Printer;
|
|
private Label label1;
|
|
private ListBox _listBox_PaperSize;
|
|
private ListBox _listBox_PaperSources;
|
|
private ListBox _listBox_PrinterResolution;
|
|
private Button _buttonPrint;
|
|
private Label label2;
|
|
private Label label3;
|
|
private Label label4;
|
|
private Label label5;
|
|
private TextBox _textBox_ServerAddress;
|
|
private TextBox _textBox_AuthToken;
|
|
private Button _buttonQueryPo;
|
|
private ComboBox comboBox1;
|
|
private StatusStrip statusStrip1;
|
|
private TabControl _mainTabBox;
|
|
private TabPage Label;
|
|
private TabPage Einstellungen;
|
|
private Label _textServerName;
|
|
private Label label8;
|
|
private Label _textPrinterName;
|
|
private Label label6;
|
|
private TabPage Druckereinstellungen;
|
|
private Label label11;
|
|
private Label label10;
|
|
private Button _buttonSaveSettings1;
|
|
private Button _buttonSaveSettings2;
|
|
private ToolStripStatusLabel _statusLabel;
|
|
private CheckBox _checkBox_Landscape;
|
|
private DataGridView dataGridView1;
|
|
private Button buttonNone;
|
|
private Button buttonAll;
|
|
private Label labelCount;
|
|
private DataGridViewTextBoxColumn Column4;
|
|
private DataGridViewCheckBoxColumn Column1;
|
|
private DataGridViewTextBoxColumn Column6;
|
|
private DataGridViewTextBoxColumn Column2;
|
|
private DataGridViewTextBoxColumn Column3;
|
|
private DataGridViewTextBoxColumn Got;
|
|
}
|
|
}
|