Synchronize saves
This commit is contained in:
99
OpenSaveCloudClient/TasksForm.Designer.cs
generated
Normal file
99
OpenSaveCloudClient/TasksForm.Designer.cs
generated
Normal file
@@ -0,0 +1,99 @@
|
||||
namespace OpenSaveCloudClient
|
||||
{
|
||||
partial class TasksForm
|
||||
{
|
||||
/// <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(TasksForm));
|
||||
this.listView1 = new System.Windows.Forms.ListView();
|
||||
this.Task = new System.Windows.Forms.ColumnHeader();
|
||||
this.Status = new System.Windows.Forms.ColumnHeader();
|
||||
this.Progress = new System.Windows.Forms.ColumnHeader();
|
||||
this.uuid = new System.Windows.Forms.ColumnHeader();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// listView1
|
||||
//
|
||||
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.Task,
|
||||
this.Status,
|
||||
this.Progress,
|
||||
this.uuid});
|
||||
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.listView1.Location = new System.Drawing.Point(0, 0);
|
||||
this.listView1.MultiSelect = false;
|
||||
this.listView1.Name = "listView1";
|
||||
this.listView1.Size = new System.Drawing.Size(800, 450);
|
||||
this.listView1.TabIndex = 0;
|
||||
this.listView1.UseCompatibleStateImageBehavior = false;
|
||||
this.listView1.View = System.Windows.Forms.View.Details;
|
||||
//
|
||||
// Task
|
||||
//
|
||||
this.Task.Text = "Task";
|
||||
this.Task.Width = 450;
|
||||
//
|
||||
// Status
|
||||
//
|
||||
this.Status.Text = "Status";
|
||||
this.Status.Width = 120;
|
||||
//
|
||||
// Progress
|
||||
//
|
||||
this.Progress.Text = "Progress";
|
||||
this.Progress.Width = 200;
|
||||
//
|
||||
// uuid
|
||||
//
|
||||
this.uuid.Text = "UUID";
|
||||
this.uuid.Width = 0;
|
||||
//
|
||||
// TasksForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||
this.Controls.Add(this.listView1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MinimumSize = new System.Drawing.Size(822, 506);
|
||||
this.Name = "TasksForm";
|
||||
this.Text = "Tasks";
|
||||
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.TasksForm_FormClosed);
|
||||
this.Load += new System.EventHandler(this.TasksForm_Load);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private ListView listView1;
|
||||
private ColumnHeader Task;
|
||||
private ColumnHeader Progress;
|
||||
private ColumnHeader uuid;
|
||||
private ColumnHeader Status;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user