mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-22 13:34:04 +03:00
126 lines
5.5 KiB
C#
126 lines
5.5 KiB
C#
|
namespace UdsAdmin.forms
|
|||
|
{
|
|||
|
partial class AboutBoxForm
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Variable del diseñador requerida.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Limpiar los recursos que se estén utilizando.
|
|||
|
/// </summary>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Código generado por el Diseñador de Windows Forms
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Método necesario para admitir el Diseñador. No se puede modificar
|
|||
|
/// el contenido del método con el editor de código.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBoxForm));
|
|||
|
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
this.logoPictureBox = new System.Windows.Forms.PictureBox();
|
|||
|
this.labelProductName = new System.Windows.Forms.Label();
|
|||
|
this.labelVersion = new System.Windows.Forms.Label();
|
|||
|
this.labelCopyright = new System.Windows.Forms.Label();
|
|||
|
this.labelCompanyName = new System.Windows.Forms.Label();
|
|||
|
this.textBoxDescription = new System.Windows.Forms.TextBox();
|
|||
|
this.okButton = new System.Windows.Forms.Button();
|
|||
|
this.tableLayoutPanel.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// tableLayoutPanel
|
|||
|
//
|
|||
|
resources.ApplyResources(this.tableLayoutPanel, "tableLayoutPanel");
|
|||
|
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
|
|||
|
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
|
|||
|
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
|
|||
|
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
|
|||
|
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
|
|||
|
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
|
|||
|
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
|
|||
|
this.tableLayoutPanel.Name = "tableLayoutPanel";
|
|||
|
//
|
|||
|
// logoPictureBox
|
|||
|
//
|
|||
|
resources.ApplyResources(this.logoPictureBox, "logoPictureBox");
|
|||
|
this.logoPictureBox.Name = "logoPictureBox";
|
|||
|
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
|
|||
|
this.logoPictureBox.TabStop = false;
|
|||
|
//
|
|||
|
// labelProductName
|
|||
|
//
|
|||
|
resources.ApplyResources(this.labelProductName, "labelProductName");
|
|||
|
this.labelProductName.Name = "labelProductName";
|
|||
|
//
|
|||
|
// labelVersion
|
|||
|
//
|
|||
|
resources.ApplyResources(this.labelVersion, "labelVersion");
|
|||
|
this.labelVersion.Name = "labelVersion";
|
|||
|
//
|
|||
|
// labelCopyright
|
|||
|
//
|
|||
|
resources.ApplyResources(this.labelCopyright, "labelCopyright");
|
|||
|
this.labelCopyright.Name = "labelCopyright";
|
|||
|
//
|
|||
|
// labelCompanyName
|
|||
|
//
|
|||
|
resources.ApplyResources(this.labelCompanyName, "labelCompanyName");
|
|||
|
this.labelCompanyName.Name = "labelCompanyName";
|
|||
|
//
|
|||
|
// textBoxDescription
|
|||
|
//
|
|||
|
resources.ApplyResources(this.textBoxDescription, "textBoxDescription");
|
|||
|
this.textBoxDescription.Name = "textBoxDescription";
|
|||
|
this.textBoxDescription.ReadOnly = true;
|
|||
|
this.textBoxDescription.TabStop = false;
|
|||
|
//
|
|||
|
// okButton
|
|||
|
//
|
|||
|
resources.ApplyResources(this.okButton, "okButton");
|
|||
|
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.okButton.Name = "okButton";
|
|||
|
//
|
|||
|
// AboutBoxForm
|
|||
|
//
|
|||
|
this.AcceptButton = this.okButton;
|
|||
|
resources.ApplyResources(this, "$this");
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.tableLayoutPanel);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "AboutBoxForm";
|
|||
|
this.ShowIcon = false;
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.tableLayoutPanel.ResumeLayout(false);
|
|||
|
this.tableLayoutPanel.PerformLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
|
|||
|
private System.Windows.Forms.PictureBox logoPictureBox;
|
|||
|
private System.Windows.Forms.Label labelProductName;
|
|||
|
private System.Windows.Forms.Label labelVersion;
|
|||
|
private System.Windows.Forms.Label labelCopyright;
|
|||
|
private System.Windows.Forms.Label labelCompanyName;
|
|||
|
private System.Windows.Forms.TextBox textBoxDescription;
|
|||
|
private System.Windows.Forms.Button okButton;
|
|||
|
}
|
|||
|
}
|