133 lines
5.6 KiB
C#
133 lines
5.6 KiB
C#
namespace AISAdmin
|
|
{
|
|
partial class EditAssignmentDialog
|
|
{
|
|
/// <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.buttonOK = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.numericUpDownMMSI = new System.Windows.Forms.NumericUpDown();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.comboBoxType = new System.Windows.Forms.ComboBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownMMSI)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonOK
|
|
//
|
|
this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonOK.Location = new System.Drawing.Point(56, 88);
|
|
this.buttonOK.Name = "buttonOK";
|
|
this.buttonOK.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonOK.TabIndex = 0;
|
|
this.buttonOK.Text = "OK";
|
|
this.buttonOK.UseVisualStyleBackColor = true;
|
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonCancel.Location = new System.Drawing.Point(137, 88);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 1;
|
|
this.buttonCancel.Text = "Cancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(38, 15);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "MMSI";
|
|
//
|
|
// numericUpDownMMSI
|
|
//
|
|
this.numericUpDownMMSI.Location = new System.Drawing.Point(56, 7);
|
|
this.numericUpDownMMSI.Maximum = new decimal(new int[] {
|
|
100000000,
|
|
0,
|
|
0,
|
|
0});
|
|
this.numericUpDownMMSI.Name = "numericUpDownMMSI";
|
|
this.numericUpDownMMSI.Size = new System.Drawing.Size(156, 23);
|
|
this.numericUpDownMMSI.TabIndex = 3;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 41);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(31, 15);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Type";
|
|
//
|
|
// comboBoxType
|
|
//
|
|
this.comboBoxType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxType.FormattingEnabled = true;
|
|
this.comboBoxType.Location = new System.Drawing.Point(55, 36);
|
|
this.comboBoxType.Name = "comboBoxType";
|
|
this.comboBoxType.Size = new System.Drawing.Size(157, 23);
|
|
this.comboBoxType.TabIndex = 5;
|
|
//
|
|
// EditAssignmentDialog
|
|
//
|
|
this.AcceptButton = this.buttonOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.buttonCancel;
|
|
this.ClientSize = new System.Drawing.Size(218, 117);
|
|
this.Controls.Add(this.comboBoxType);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.numericUpDownMMSI);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonOK);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Name = "EditAssignmentDialog";
|
|
this.Text = "Edit assignment";
|
|
this.Load += new System.EventHandler(this.EditAssignmentDialog_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownMMSI)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonOK;
|
|
private Button buttonCancel;
|
|
private Label label1;
|
|
private NumericUpDown numericUpDownMMSI;
|
|
private Label label2;
|
|
private ComboBox comboBoxType;
|
|
}
|
|
} |