Mk0.Software.ImageSorter/Mk0.Software.ImageSorter/Konverter.Designer.cs

125 lines
5.4 KiB
C#
Raw Normal View History

2024-08-18 21:48:34 +02:00
namespace Mk0.Software.ImageSorter
{
partial class Konverter
{
/// <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()
{
this.comboBoxFormat = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.labelBildname = new System.Windows.Forms.Label();
this.buttonKonvert = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// comboBoxFormat
//
this.comboBoxFormat.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2024-08-18 21:48:34 +02:00
this.comboBoxFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxFormat.FormattingEnabled = true;
this.comboBoxFormat.Items.AddRange(new object[] {
"PNG",
"JPG",
"BMP"});
this.comboBoxFormat.Location = new System.Drawing.Point(201, 65);
2024-08-18 21:48:34 +02:00
this.comboBoxFormat.Name = "comboBoxFormat";
this.comboBoxFormat.Size = new System.Drawing.Size(121, 21);
2024-08-18 21:48:34 +02:00
this.comboBoxFormat.TabIndex = 0;
2024-08-18 22:33:01 +02:00
this.comboBoxFormat.SelectedIndexChanged += new System.EventHandler(this.ComboBoxFormat_SelectedIndexChanged);
2024-08-18 21:48:34 +02:00
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
2024-08-18 21:48:34 +02:00
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(122, 13);
2024-08-18 21:48:34 +02:00
this.label1.TabIndex = 1;
this.label1.Text = "Zu konvertierendes Bild:";
//
// labelBildname
//
this.labelBildname.AutoSize = true;
this.labelBildname.Location = new System.Drawing.Point(12, 29);
2024-08-18 21:48:34 +02:00
this.labelBildname.Name = "labelBildname";
this.labelBildname.Size = new System.Drawing.Size(51, 13);
2024-08-18 21:48:34 +02:00
this.labelBildname.TabIndex = 2;
this.labelBildname.Text = "unknown";
//
// buttonKonvert
//
this.buttonKonvert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2024-08-18 21:48:34 +02:00
this.buttonKonvert.Enabled = false;
this.buttonKonvert.Location = new System.Drawing.Point(337, 62);
2024-08-18 21:48:34 +02:00
this.buttonKonvert.Name = "buttonKonvert";
this.buttonKonvert.Size = new System.Drawing.Size(121, 32);
2024-08-18 21:48:34 +02:00
this.buttonKonvert.TabIndex = 3;
this.buttonKonvert.Text = "Konvertieren";
this.buttonKonvert.UseVisualStyleBackColor = true;
this.buttonKonvert.Click += new System.EventHandler(this.ButtonKonvert_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 68);
2024-08-18 21:48:34 +02:00
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(90, 13);
2024-08-18 21:48:34 +02:00
this.label2.TabIndex = 4;
this.label2.Text = "Neues Bildformat:";
//
// Konverter
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
2024-08-18 21:48:34 +02:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(470, 105);
2024-08-18 21:48:34 +02:00
this.Controls.Add(this.label2);
this.Controls.Add(this.buttonKonvert);
this.Controls.Add(this.labelBildname);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboBoxFormat);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(486, 144);
2024-08-18 21:48:34 +02:00
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(486, 144);
2024-08-18 21:48:34 +02:00
this.Name = "Konverter";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Image Sorter | Konverter";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox comboBoxFormat;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labelBildname;
private System.Windows.Forms.Button buttonKonvert;
private System.Windows.Forms.Label label2;
}
}