124 lines
5.1 KiB
C#
124 lines
5.1 KiB
C#
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Pilz.Updating.Client.GUI
|
|
{
|
|
[Microsoft.VisualBasic.CompilerServices.DesignerGenerated()]
|
|
public partial class SimpleActionDialog : Telerik.WinControls.UI.RadForm
|
|
{
|
|
|
|
// Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
|
[DebuggerNonUserCode()]
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
try
|
|
{
|
|
if (disposing && components is object)
|
|
{
|
|
components.Dispose();
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
base.Dispose(disposing);
|
|
}
|
|
}
|
|
|
|
// Wird vom Windows Form-Designer benötigt.
|
|
private System.ComponentModel.IContainer components;
|
|
|
|
// Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
|
// Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
|
// Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
|
[DebuggerStepThrough()]
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SimpleActionDialog));
|
|
this._Panel1 = new System.Windows.Forms.Panel();
|
|
this.radWaitingBar1 = new Telerik.WinControls.UI.RadWaitingBar();
|
|
this.radProgressBar1 = new Telerik.WinControls.UI.RadProgressBar();
|
|
this.waitingBarIndicatorElement1 = new Telerik.WinControls.UI.WaitingBarIndicatorElement();
|
|
this.waitingBarIndicatorElement2 = new Telerik.WinControls.UI.WaitingBarIndicatorElement();
|
|
this._Panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.radWaitingBar1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.radProgressBar1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// _Panel1
|
|
//
|
|
this._Panel1.BackColor = System.Drawing.Color.Transparent;
|
|
this._Panel1.Controls.Add(this.radWaitingBar1);
|
|
this._Panel1.Controls.Add(this.radProgressBar1);
|
|
resources.ApplyResources(this._Panel1, "_Panel1");
|
|
this._Panel1.Name = "_Panel1";
|
|
//
|
|
// radWaitingBar1
|
|
//
|
|
resources.ApplyResources(this.radWaitingBar1, "radWaitingBar1");
|
|
this.radWaitingBar1.Name = "radWaitingBar1";
|
|
this.radWaitingBar1.ShowText = true;
|
|
this.radWaitingBar1.WaitingIndicators.Add(this.waitingBarIndicatorElement2);
|
|
this.radWaitingBar1.WaitingIndicators.Add(this.waitingBarIndicatorElement1);
|
|
this.radWaitingBar1.WaitingSpeed = 100;
|
|
this.radWaitingBar1.WaitingStep = 2;
|
|
//
|
|
// radProgressBar1
|
|
//
|
|
resources.ApplyResources(this.radProgressBar1, "radProgressBar1");
|
|
this.radProgressBar1.Name = "radProgressBar1";
|
|
//
|
|
// waitingBarIndicatorElement1
|
|
//
|
|
this.waitingBarIndicatorElement1.Name = "waitingBarIndicatorElement1";
|
|
this.waitingBarIndicatorElement1.StretchHorizontally = false;
|
|
//
|
|
// waitingBarIndicatorElement2
|
|
//
|
|
this.waitingBarIndicatorElement2.Name = "waitingBarIndicatorElement2";
|
|
this.waitingBarIndicatorElement2.StretchHorizontally = false;
|
|
//
|
|
// SimpleActionDialog
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this._Panel1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "SimpleActionDialog";
|
|
//
|
|
//
|
|
//
|
|
this.RootElement.ApplyShapeToControl = true;
|
|
this._Panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.radWaitingBar1)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.radProgressBar1)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
private Panel _Panel1;
|
|
private Telerik.WinControls.UI.RadWaitingBar radWaitingBar1;
|
|
private Telerik.WinControls.UI.RadProgressBar radProgressBar1;
|
|
private Telerik.WinControls.UI.WaitingBarIndicatorElement waitingBarIndicatorElement2;
|
|
private Telerik.WinControls.UI.WaitingBarIndicatorElement waitingBarIndicatorElement1;
|
|
|
|
internal Panel Panel1
|
|
{
|
|
[MethodImpl(MethodImplOptions.Synchronized)]
|
|
get
|
|
{
|
|
return _Panel1;
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.Synchronized)]
|
|
set
|
|
{
|
|
_Panel1 = value;
|
|
}
|
|
}
|
|
}
|
|
} |