First stuff

This commit is contained in:
2022-04-18 16:08:19 +02:00
parent abb9b3f415
commit e7c2ae7b8d
17 changed files with 737 additions and 30 deletions

109
APP/Main.Designer.cs generated
View File

@@ -31,13 +31,20 @@
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
this.tabControl = new System.Windows.Forms.TabControl();
this.tabUser = new System.Windows.Forms.TabPage();
this.userLinkLabel = new System.Windows.Forms.LinkLabel();
this.userLabelInfo = new System.Windows.Forms.Label();
this.userLabel = new System.Windows.Forms.Label();
this.userImage = new System.Windows.Forms.PictureBox();
this.tabSeason = new System.Windows.Forms.TabPage();
this.listViewSeason = new System.Windows.Forms.ListView();
this.tabAddAnime = new System.Windows.Forms.TabPage();
this.menuStrip = new System.Windows.Forms.MenuStrip();
this.memeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listViewSeason = new System.Windows.Forms.ListView();
this.userLabelInfoData = new System.Windows.Forms.Label();
this.tabControl.SuspendLayout();
this.tabUser.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.userImage)).BeginInit();
this.tabSeason.SuspendLayout();
this.menuStrip.SuspendLayout();
this.SuspendLayout();
@@ -56,7 +63,12 @@
//
// tabUser
//
this.tabUser.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.tabUser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.tabUser.Controls.Add(this.userLabelInfoData);
this.tabUser.Controls.Add(this.userLinkLabel);
this.tabUser.Controls.Add(this.userLabelInfo);
this.tabUser.Controls.Add(this.userLabel);
this.tabUser.Controls.Add(this.userImage);
this.tabUser.Location = new System.Drawing.Point(4, 24);
this.tabUser.Name = "tabUser";
this.tabUser.Padding = new System.Windows.Forms.Padding(3);
@@ -64,6 +76,55 @@
this.tabUser.TabIndex = 0;
this.tabUser.Text = "YOURNAME";
//
// userLinkLabel
//
this.userLinkLabel.AutoSize = true;
this.userLinkLabel.LinkColor = System.Drawing.SystemColors.Highlight;
this.userLinkLabel.Location = new System.Drawing.Point(264, 51);
this.userLinkLabel.Name = "userLinkLabel";
this.userLinkLabel.Size = new System.Drawing.Size(60, 15);
this.userLinkLabel.TabIndex = 3;
this.userLinkLabel.TabStop = true;
this.userLinkLabel.Text = "linkLabel1";
this.userLinkLabel.Visible = false;
this.userLinkLabel.VisitedLinkColor = System.Drawing.SystemColors.Highlight;
this.userLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.userLinkLabel_LinkClicked);
//
// userLabelInfo
//
this.userLabelInfo.AutoSize = true;
this.userLabelInfo.ForeColor = System.Drawing.SystemColors.Control;
this.userLabelInfo.Location = new System.Drawing.Point(264, 76);
this.userLabelInfo.Name = "userLabelInfo";
this.userLabelInfo.Size = new System.Drawing.Size(67, 60);
this.userLabelInfo.TabIndex = 2;
this.userLabelInfo.Text = "MAL ID:\r\nLast online:\r\nLocation:\r\nJoined:";
this.userLabelInfo.Visible = false;
//
// userLabel
//
this.userLabel.AutoSize = true;
this.userLabel.Font = new System.Drawing.Font("Comic Sans MS", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.userLabel.ForeColor = System.Drawing.SystemColors.Control;
this.userLabel.Location = new System.Drawing.Point(264, 18);
this.userLabel.Name = "userLabel";
this.userLabel.Size = new System.Drawing.Size(123, 27);
this.userLabel.TabIndex = 1;
this.userLabel.Text = "YOURNAME";
this.userLabel.Visible = false;
//
// userImage
//
this.userImage.ErrorImage = null;
this.userImage.Image = ((System.Drawing.Image)(resources.GetObject("userImage.Image")));
this.userImage.InitialImage = null;
this.userImage.Location = new System.Drawing.Point(8, 6);
this.userImage.Name = "userImage";
this.userImage.Size = new System.Drawing.Size(250, 250);
this.userImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.userImage.TabIndex = 0;
this.userImage.TabStop = false;
//
// tabSeason
//
this.tabSeason.BackColor = System.Drawing.SystemColors.ControlDarkDark;
@@ -75,9 +136,24 @@
this.tabSeason.TabIndex = 1;
this.tabSeason.Text = "Season";
//
// listViewSeason
//
this.listViewSeason.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.listViewSeason.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.listViewSeason.Dock = System.Windows.Forms.DockStyle.Fill;
this.listViewSeason.ForeColor = System.Drawing.SystemColors.Control;
this.listViewSeason.GridLines = true;
this.listViewSeason.Location = new System.Drawing.Point(3, 3);
this.listViewSeason.Name = "listViewSeason";
this.listViewSeason.ShowGroups = false;
this.listViewSeason.Size = new System.Drawing.Size(814, 513);
this.listViewSeason.TabIndex = 0;
this.listViewSeason.UseCompatibleStateImageBehavior = false;
this.listViewSeason.View = System.Windows.Forms.View.Tile;
//
// tabAddAnime
//
this.tabAddAnime.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.tabAddAnime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.tabAddAnime.Location = new System.Drawing.Point(4, 24);
this.tabAddAnime.Name = "tabAddAnime";
this.tabAddAnime.Padding = new System.Windows.Forms.Padding(3);
@@ -110,21 +186,22 @@
this.loginToolStripMenuItem.Text = "Login";
this.loginToolStripMenuItem.Click += new System.EventHandler(this.loginToolStripMenuItem_Click);
//
// listViewSeason
// userLabelInfoData
//
this.listViewSeason.BackColor = System.Drawing.SystemColors.ControlDark;
this.listViewSeason.Dock = System.Windows.Forms.DockStyle.Fill;
this.listViewSeason.Location = new System.Drawing.Point(3, 3);
this.listViewSeason.Name = "listViewSeason";
this.listViewSeason.Size = new System.Drawing.Size(814, 513);
this.listViewSeason.TabIndex = 0;
this.listViewSeason.UseCompatibleStateImageBehavior = false;
this.userLabelInfoData.AutoSize = true;
this.userLabelInfoData.ForeColor = System.Drawing.SystemColors.Control;
this.userLabelInfoData.Location = new System.Drawing.Point(374, 76);
this.userLabelInfoData.Name = "userLabelInfoData";
this.userLabelInfoData.Size = new System.Drawing.Size(38, 15);
this.userLabelInfoData.TabIndex = 4;
this.userLabelInfoData.Text = "label1";
this.userLabelInfoData.Visible = false;
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.ClientSize = new System.Drawing.Size(828, 571);
this.Controls.Add(this.tabControl);
this.Controls.Add(this.menuStrip);
@@ -132,6 +209,9 @@
this.Name = "Main";
this.Text = "APP - Anime plan program";
this.tabControl.ResumeLayout(false);
this.tabUser.ResumeLayout(false);
this.tabUser.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.userImage)).EndInit();
this.tabSeason.ResumeLayout(false);
this.menuStrip.ResumeLayout(false);
this.menuStrip.PerformLayout();
@@ -150,5 +230,10 @@
private ToolStripMenuItem memeToolStripMenuItem;
private ToolStripMenuItem loginToolStripMenuItem;
private ListView listViewSeason;
private PictureBox userImage;
private Label userLabel;
private Label userLabelInfo;
private LinkLabel userLinkLabel;
private Label userLabelInfoData;
}
}