Changing Font Awesome icons to Windows SDL2 icons + starting Management window

This commit is contained in:
Aurélie Delhaie
2022-05-29 23:04:03 +02:00
parent 2e76c8cd6a
commit eb4ded0c5b
18 changed files with 2780 additions and 314 deletions

View File

@@ -0,0 +1,164 @@
namespace OpenSaveCloudClient
{
partial class UserManagementForm
{
/// <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(UserManagementForm));
this.listView1 = new System.Windows.Forms.ListView();
this.name = new System.Windows.Forms.ColumnHeader();
this.panel1 = new System.Windows.Forms.Panel();
this.label2 = new System.Windows.Forms.Label();
this.DeleteButton = new System.Windows.Forms.Button();
this.UserSettingsButton = new System.Windows.Forms.Button();
this.AddButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.name});
this.listView1.Location = new System.Drawing.Point(12, 86);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(234, 352);
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
//
// name
//
this.name.Text = "Name";
this.name.Width = 220;
//
// panel1
//
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.DeleteButton);
this.panel1.Controls.Add(this.UserSettingsButton);
this.panel1.Controls.Add(this.AddButton);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.MaximumSize = new System.Drawing.Size(0, 80);
this.panel1.MinimumSize = new System.Drawing.Size(0, 80);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(800, 80);
this.panel1.TabIndex = 6;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label2.ForeColor = System.Drawing.Color.LightGray;
this.label2.Location = new System.Drawing.Point(138, 22);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(20, 32);
this.label2.TabIndex = 9;
this.label2.Text = "|";
//
// DeleteButton
//
this.DeleteButton.Enabled = false;
this.DeleteButton.FlatAppearance.BorderSize = 0;
this.DeleteButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.DeleteButton.Font = new System.Drawing.Font("Segoe MDL2 Assets", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.DeleteButton.Location = new System.Drawing.Point(75, 3);
this.DeleteButton.Name = "DeleteButton";
this.DeleteButton.Size = new System.Drawing.Size(57, 74);
this.DeleteButton.TabIndex = 1;
this.DeleteButton.Text = "\r\n\r\nDelete";
this.DeleteButton.UseVisualStyleBackColor = true;
//
// UserSettingsButton
//
this.UserSettingsButton.FlatAppearance.BorderSize = 0;
this.UserSettingsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.UserSettingsButton.Font = new System.Drawing.Font("Segoe MDL2 Assets", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.UserSettingsButton.Location = new System.Drawing.Point(164, 3);
this.UserSettingsButton.Name = "UserSettingsButton";
this.UserSettingsButton.Size = new System.Drawing.Size(57, 74);
this.UserSettingsButton.TabIndex = 8;
this.UserSettingsButton.Text = "\r\n\r\nMe";
this.UserSettingsButton.UseVisualStyleBackColor = true;
this.UserSettingsButton.Click += new System.EventHandler(this.UserSettingsButton_Click);
//
// AddButton
//
this.AddButton.FlatAppearance.BorderSize = 0;
this.AddButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.AddButton.Font = new System.Drawing.Font("Segoe MDL2 Assets", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.AddButton.Location = new System.Drawing.Point(12, 3);
this.AddButton.Name = "AddButton";
this.AddButton.Size = new System.Drawing.Size(57, 74);
this.AddButton.TabIndex = 0;
this.AddButton.Text = "\r\n\r\nAdd";
this.AddButton.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Location = new System.Drawing.Point(252, 86);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(536, 352);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Detail";
//
// UserManagementForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel1);
this.Controls.Add(this.listView1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(816, 489);
this.MinimumSize = new System.Drawing.Size(816, 489);
this.Name = "UserManagementForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Management";
this.Load += new System.EventHandler(this.UserManagementForm_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private ListView listView1;
private ColumnHeader name;
private Panel panel1;
private Button DeleteButton;
private Button AddButton;
private GroupBox groupBox1;
private Label label2;
private Button UserSettingsButton;
}
}