#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

201 lines
7.5 KiB

// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
namespace ICSharpCode.IconEditor
{
partial class PickFormatDialog
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.widthUpDown = new System.Windows.Forms.NumericUpDown();
this.heightUpDown = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.colorDepthComboBox = new System.Windows.Forms.ComboBox();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.widthUpDown)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.heightUpDown)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(26, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(61, 23);
this.label1.TabIndex = 0;
this.label1.Text = "&Width:";
//
// label2
//
this.label2.Location = new System.Drawing.Point(26, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(61, 23);
this.label2.TabIndex = 1;
this.label2.Text = "&Height:";
//
// widthUpDown
//
this.widthUpDown.Location = new System.Drawing.Point(93, 18);
this.widthUpDown.Maximum = new decimal(new int[] {
256,
0,
0,
0});
this.widthUpDown.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.widthUpDown.Name = "widthUpDown";
this.widthUpDown.Size = new System.Drawing.Size(78, 20);
this.widthUpDown.TabIndex = 2;
this.widthUpDown.Value = new decimal(new int[] {
32,
0,
0,
0});
//
// heightUpDown
//
this.heightUpDown.Location = new System.Drawing.Point(93, 46);
this.heightUpDown.Maximum = new decimal(new int[] {
256,
0,
0,
0});
this.heightUpDown.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.heightUpDown.Name = "heightUpDown";
this.heightUpDown.Size = new System.Drawing.Size(78, 20);
this.heightUpDown.TabIndex = 3;
this.heightUpDown.Value = new decimal(new int[] {
32,
0,
0,
0});
//
// label3
//
this.label3.Location = new System.Drawing.Point(26, 76);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(61, 23);
this.label3.TabIndex = 4;
this.label3.Text = "&Colors:";
//
// colorDepthComboBox
//
this.colorDepthComboBox.FormattingEnabled = true;
this.colorDepthComboBox.Items.AddRange(new object[] {
"Monochrome",
"4 bit",
"8 bit",
"24 bit",
"32 bit"});
this.colorDepthComboBox.Location = new System.Drawing.Point(93, 73);
this.colorDepthComboBox.Name = "colorDepthComboBox";
this.colorDepthComboBox.Size = new System.Drawing.Size(78, 21);
this.colorDepthComboBox.TabIndex = 5;
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(28, 114);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 6;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.OkButtonClick);
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(109, 114);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 7;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick);
//
// PickFormatDialog
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(196, 149);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.colorDepthComboBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.heightUpDown);
this.Controls.Add(this.widthUpDown);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PickFormatDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Image Format";
((System.ComponentModel.ISupportInitialize)(this.widthUpDown)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.heightUpDown)).EndInit();
this.ResumeLayout(false);
}
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.ComboBox colorDepthComboBox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NumericUpDown heightUpDown;
private System.Windows.Forms.NumericUpDown widthUpDown;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}