72 lines
2.3 KiB
C#
72 lines
2.3 KiB
C#
|
namespace OpenLink
|
|||
|
{
|
|||
|
partial class FormOpenUrl
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
textBoxUrl = new TextBox();
|
|||
|
buttonOpen = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// textBoxUrl
|
|||
|
//
|
|||
|
textBoxUrl.Location = new Point(12, 12);
|
|||
|
textBoxUrl.Name = "textBoxUrl";
|
|||
|
textBoxUrl.PlaceholderText = "domizil://RTF/Letterdraft?Nummer=RTF-12023754";
|
|||
|
textBoxUrl.Size = new Size(352, 23);
|
|||
|
textBoxUrl.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonOpen
|
|||
|
//
|
|||
|
buttonOpen.Location = new Point(370, 12);
|
|||
|
buttonOpen.Name = "buttonOpen";
|
|||
|
buttonOpen.Size = new Size(75, 23);
|
|||
|
buttonOpen.TabIndex = 1;
|
|||
|
buttonOpen.Text = "Open";
|
|||
|
buttonOpen.UseVisualStyleBackColor = true;
|
|||
|
buttonOpen.Click += buttonOpen_Click;
|
|||
|
//
|
|||
|
// FormOpenUrl
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(461, 53);
|
|||
|
Controls.Add(buttonOpen);
|
|||
|
Controls.Add(textBoxUrl);
|
|||
|
Name = "FormOpenUrl";
|
|||
|
Text = "Open URL";
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private TextBox textBoxUrl;
|
|||
|
private Button buttonOpen;
|
|||
|
}
|
|||
|
}
|