mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
101 lines
3.8 KiB
C#
101 lines
3.8 KiB
C#
|
namespace network.loki.lokinet.win32.ui
|
|||
|
{
|
|||
|
partial class dlgBootstrap
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(dlgBootstrap));
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.uriBox = new System.Windows.Forms.TextBox();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.btnDownload = new System.Windows.Forms.Button();
|
|||
|
this.btnCancel = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
resources.ApplyResources(this.label1, "label1");
|
|||
|
this.label1.Name = "label1";
|
|||
|
//
|
|||
|
// uriBox
|
|||
|
//
|
|||
|
resources.ApplyResources(this.uriBox, "uriBox");
|
|||
|
this.uriBox.Name = "uriBox";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
resources.ApplyResources(this.label2, "label2");
|
|||
|
this.label2.Name = "label2";
|
|||
|
//
|
|||
|
// btnDownload
|
|||
|
//
|
|||
|
resources.ApplyResources(this.btnDownload, "btnDownload");
|
|||
|
this.btnDownload.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|||
|
this.btnDownload.Name = "btnDownload";
|
|||
|
this.btnDownload.UseVisualStyleBackColor = true;
|
|||
|
this.btnDownload.Click += new System.EventHandler(this.button1_Click);
|
|||
|
//
|
|||
|
// btnCancel
|
|||
|
//
|
|||
|
resources.ApplyResources(this.btnCancel, "btnCancel");
|
|||
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.btnCancel.Name = "btnCancel";
|
|||
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|||
|
this.btnCancel.Click += new System.EventHandler(this.button1_Click_1);
|
|||
|
//
|
|||
|
// bootstrap
|
|||
|
//
|
|||
|
this.AcceptButton = this.btnDownload;
|
|||
|
resources.ApplyResources(this, "$this");
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.CancelButton = this.btnCancel;
|
|||
|
this.ControlBox = false;
|
|||
|
this.Controls.Add(this.btnCancel);
|
|||
|
this.Controls.Add(this.btnDownload);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.uriBox);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "bootstrap";
|
|||
|
this.ShowIcon = false;
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.TextBox uriBox;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.Button btnDownload;
|
|||
|
private System.Windows.Forms.Button btnCancel;
|
|||
|
}
|
|||
|
}
|