Files
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

112 lines
4.7 KiB
C#

namespace Pulsar.Server.Forms
{
partial class FrmMemoryDump
{
/// <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(FrmMemoryDump));
this.btnCancel = new System.Windows.Forms.Button();
this.progressDownload = new System.Windows.Forms.ProgressBar();
this.labelProgress = new System.Windows.Forms.Label();
this.labelStatus = new System.Windows.Forms.Label();
this.labelValue = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(490, 11);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 0;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// progressDownload
//
this.progressDownload.Location = new System.Drawing.Point(13, 11);
this.progressDownload.Name = "progressDownload";
this.progressDownload.Size = new System.Drawing.Size(362, 23);
this.progressDownload.TabIndex = 1;
//
// labelProgress
//
this.labelProgress.AutoSize = true;
this.labelProgress.Location = new System.Drawing.Point(381, 16);
this.labelProgress.Name = "labelProgress";
this.labelProgress.Size = new System.Drawing.Size(68, 13);
this.labelProgress.TabIndex = 2;
this.labelProgress.Text = "Progress: 0%";
//
// labelStatus
//
this.labelStatus.AutoSize = true;
this.labelStatus.Location = new System.Drawing.Point(13, 41);
this.labelStatus.Name = "labelStatus";
this.labelStatus.Size = new System.Drawing.Size(40, 13);
this.labelStatus.TabIndex = 3;
this.labelStatus.Text = "Status:";
//
// labelValue
//
this.labelValue.AutoSize = true;
this.labelValue.Location = new System.Drawing.Point(59, 41);
this.labelValue.Name = "labelValue";
this.labelValue.Size = new System.Drawing.Size(55, 13);
this.labelValue.TabIndex = 4;
this.labelValue.Text = "Pending...";
//
// FrmMemoryDump
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(577, 68);
this.Controls.Add(this.labelValue);
this.Controls.Add(this.labelStatus);
this.Controls.Add(this.labelProgress);
this.Controls.Add(this.progressDownload);
this.Controls.Add(this.btnCancel);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmMemoryDump";
this.Text = "Memory Dump []";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMemoryDump_FormClosing);
this.Load += new System.EventHandler(this.FrmMemoryDump_Load);
this.Shown += new System.EventHandler(this.FrmMemoryDump_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ProgressBar progressDownload;
private System.Windows.Forms.Label labelProgress;
private System.Windows.Forms.Label labelStatus;
private System.Windows.Forms.Label labelValue;
}
}