mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 15:14:09 -06:00
128 lines
5.6 KiB
C#
128 lines
5.6 KiB
C#
namespace EmbeddedUI
|
|
{
|
|
partial class SetupWizard
|
|
{
|
|
/// <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.messagesTextBox = new System.Windows.Forms.TextBox();
|
|
this.progressBar = new System.Windows.Forms.ProgressBar();
|
|
this.progressLabel = new System.Windows.Forms.Label();
|
|
this.installButton = new System.Windows.Forms.Button();
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// messagesTextBox
|
|
//
|
|
this.messagesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.messagesTextBox.Location = new System.Drawing.Point(12, 12);
|
|
this.messagesTextBox.Multiline = true;
|
|
this.messagesTextBox.Name = "messagesTextBox";
|
|
this.messagesTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
this.messagesTextBox.Size = new System.Drawing.Size(500, 289);
|
|
this.messagesTextBox.TabIndex = 0;
|
|
//
|
|
// progressBar
|
|
//
|
|
this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.progressBar.Location = new System.Drawing.Point(12, 307);
|
|
this.progressBar.Name = "progressBar";
|
|
this.progressBar.Size = new System.Drawing.Size(500, 15);
|
|
this.progressBar.TabIndex = 1;
|
|
this.progressBar.Visible = false;
|
|
//
|
|
// progressLabel
|
|
//
|
|
this.progressLabel.AutoSize = true;
|
|
this.progressLabel.Location = new System.Drawing.Point(13, 336);
|
|
this.progressLabel.Name = "progressLabel";
|
|
this.progressLabel.Size = new System.Drawing.Size(35, 13);
|
|
this.progressLabel.TabIndex = 2;
|
|
this.progressLabel.Text = "label1";
|
|
this.progressLabel.Visible = false;
|
|
//
|
|
// installButton
|
|
//
|
|
this.installButton.Location = new System.Drawing.Point(356, 331);
|
|
this.installButton.Name = "installButton";
|
|
this.installButton.Size = new System.Drawing.Size(75, 23);
|
|
this.installButton.TabIndex = 3;
|
|
this.installButton.Text = "Install";
|
|
this.installButton.UseVisualStyleBackColor = true;
|
|
this.installButton.Click += new System.EventHandler(this.installButton_Click);
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.Location = new System.Drawing.Point(437, 331);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
|
this.cancelButton.TabIndex = 3;
|
|
this.cancelButton.Text = "Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.Location = new System.Drawing.Point(437, 331);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(75, 23);
|
|
this.exitButton.TabIndex = 3;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// SetupWizard
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(524, 361);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.Controls.Add(this.installButton);
|
|
this.Controls.Add(this.progressLabel);
|
|
this.Controls.Add(this.progressBar);
|
|
this.Controls.Add(this.messagesTextBox);
|
|
this.Name = "SetupWizard";
|
|
this.Text = "Sample Embedded UI (WinForms)";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox messagesTextBox;
|
|
private System.Windows.Forms.ProgressBar progressBar;
|
|
private System.Windows.Forms.Label progressLabel;
|
|
private System.Windows.Forms.Button installButton;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.Button exitButton;
|
|
}
|
|
} |