rebuild UI of Pilz.Updating.Client.GUI

This commit is contained in:
2022-06-11 11:38:25 +02:00
parent dab01d9ed7
commit c7f0098c20
8 changed files with 899 additions and 1082 deletions

View File

@@ -6,7 +6,7 @@ using System.Windows.Forms;
namespace Pilz.Updating.Client.GUI
{
[Microsoft.VisualBasic.CompilerServices.DesignerGenerated()]
public partial class SimpleActionDialog : DevComponents.DotNetBar.OfficeForm
public partial class SimpleActionDialog : Telerik.WinControls.UI.RadForm
{
// Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
@@ -35,55 +35,76 @@ namespace Pilz.Updating.Client.GUI
[DebuggerStepThrough()]
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
var resources = new System.ComponentModel.ComponentResourceManager(typeof(SimpleActionDialog));
_Panel1 = new Panel();
_LabelX_Progress = new DevComponents.DotNetBar.LabelX();
_ProgressBarX_Progress = new DevComponents.DotNetBar.Controls.ProgressBarX();
_Panel1.SuspendLayout();
SuspendLayout();
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
// _Panel1
//
_Panel1.BackColor = Color.Transparent;
_Panel1.Controls.Add(_LabelX_Progress);
_Panel1.Controls.Add(_ProgressBarX_Progress);
resources.ApplyResources(_Panel1, "Panel1");
_Panel1.Name = "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";
//
// LabelX_Progress
// radWaitingBar1
//
resources.ApplyResources(_LabelX_Progress, "LabelX_Progress");
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";
//
_LabelX_Progress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
_LabelX_Progress.Name = "LabelX_Progress";
// waitingBarIndicatorElement1
//
// ProgressBarX_Progress
this.waitingBarIndicatorElement1.Name = "waitingBarIndicatorElement1";
this.waitingBarIndicatorElement1.StretchHorizontally = false;
//
resources.ApplyResources(_ProgressBarX_Progress, "ProgressBarX_Progress");
// waitingBarIndicatorElement2
//
//
//
_ProgressBarX_Progress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
_ProgressBarX_Progress.Name = "ProgressBarX_Progress";
this.waitingBarIndicatorElement2.Name = "waitingBarIndicatorElement2";
this.waitingBarIndicatorElement2.StretchHorizontally = false;
//
// SimpleActionDialog
//
resources.ApplyResources(this, "$this");
AutoScaleMode = AutoScaleMode.Font;
ControlBox = false;
Controls.Add(_Panel1);
FormBorderStyle = FormBorderStyle.FixedSingle;
Name = "SimpleActionDialog";
TopLeftCornerSize = 0;
TopRightCornerSize = 0;
_Panel1.ResumeLayout(false);
ResumeLayout(false);
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
{
@@ -99,39 +120,5 @@ namespace Pilz.Updating.Client.GUI
_Panel1 = value;
}
}
private DevComponents.DotNetBar.LabelX _LabelX_Progress;
internal DevComponents.DotNetBar.LabelX LabelX_Progress
{
[MethodImpl(MethodImplOptions.Synchronized)]
get
{
return _LabelX_Progress;
}
[MethodImpl(MethodImplOptions.Synchronized)]
set
{
_LabelX_Progress = value;
}
}
private DevComponents.DotNetBar.Controls.ProgressBarX _ProgressBarX_Progress;
internal DevComponents.DotNetBar.Controls.ProgressBarX ProgressBarX_Progress
{
[MethodImpl(MethodImplOptions.Synchronized)]
get
{
return _ProgressBarX_Progress;
}
[MethodImpl(MethodImplOptions.Synchronized)]
set
{
_ProgressBarX_Progress = value;
}
}
}
}