Dryad/JobBrowser/UsefulForms/UrlDialog.Designer.cs

117 lines
4.4 KiB
C#

/*
Copyright (c) Microsoft Corporation
All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License
at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER
EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions and
limitations under the License.
*/
namespace Microsoft.Research.UsefulForms
{
partial class CustomDialog
{
/// <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.button_OK = new System.Windows.Forms.Button();
this.button_cancel = new System.Windows.Forms.Button();
this.textBox_userInput = new System.Windows.Forms.TextBox();
this.label_prompt = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// button_OK
//
this.button_OK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.button_OK.Location = new System.Drawing.Point(68, 63);
this.button_OK.Name = "button_OK";
this.button_OK.Size = new System.Drawing.Size(69, 33);
this.button_OK.TabIndex = 0;
this.button_OK.Text = "OK";
this.button_OK.UseVisualStyleBackColor = true;
//
// button_cancel
//
this.button_cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.button_cancel.Location = new System.Drawing.Point(158, 63);
this.button_cancel.Name = "button_cancel";
this.button_cancel.Size = new System.Drawing.Size(69, 33);
this.button_cancel.TabIndex = 0;
this.button_cancel.Text = "Cancel";
this.button_cancel.UseVisualStyleBackColor = true;
//
// textBox_userInput
//
this.textBox_userInput.Location = new System.Drawing.Point(12, 37);
this.textBox_userInput.Name = "textBox_userInput";
this.textBox_userInput.Size = new System.Drawing.Size(276, 20);
this.textBox_userInput.TabIndex = 1;
//
// label_prompt
//
this.label_prompt.AutoSize = true;
this.label_prompt.Location = new System.Drawing.Point(12, 11);
this.label_prompt.Name = "label_prompt";
this.label_prompt.Size = new System.Drawing.Size(105, 13);
this.label_prompt.TabIndex = 2;
this.label_prompt.Text = "Please type the URL";
//
// Dialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(298, 111);
this.Controls.Add(this.label_prompt);
this.Controls.Add(this.textBox_userInput);
this.Controls.Add(this.button_cancel);
this.Controls.Add(this.button_OK);
this.Name = "Dialog";
this.Text = "Dialog";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button_OK;
private System.Windows.Forms.Button button_cancel;
private System.Windows.Forms.TextBox textBox_userInput;
private System.Windows.Forms.Label label_prompt;
}
}