mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 23:29:53 +01:00
Base proj
This commit is contained in:
154
APP/Main.Designer.cs
generated
Normal file
154
APP/Main.Designer.cs
generated
Normal file
@@ -0,0 +1,154 @@
|
||||
namespace APP
|
||||
{
|
||||
partial class Main
|
||||
{
|
||||
/// <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(Main));
|
||||
this.tabControl = new System.Windows.Forms.TabControl();
|
||||
this.tabUser = new System.Windows.Forms.TabPage();
|
||||
this.tabSeason = new System.Windows.Forms.TabPage();
|
||||
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.tabControl.SuspendLayout();
|
||||
this.tabSeason.SuspendLayout();
|
||||
this.menuStrip.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tabControl
|
||||
//
|
||||
this.tabControl.Controls.Add(this.tabUser);
|
||||
this.tabControl.Controls.Add(this.tabSeason);
|
||||
this.tabControl.Controls.Add(this.tabAddAnime);
|
||||
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControl.Location = new System.Drawing.Point(0, 24);
|
||||
this.tabControl.Name = "tabControl";
|
||||
this.tabControl.SelectedIndex = 0;
|
||||
this.tabControl.Size = new System.Drawing.Size(828, 547);
|
||||
this.tabControl.TabIndex = 0;
|
||||
//
|
||||
// tabUser
|
||||
//
|
||||
this.tabUser.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
||||
this.tabUser.Location = new System.Drawing.Point(4, 24);
|
||||
this.tabUser.Name = "tabUser";
|
||||
this.tabUser.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tabUser.Size = new System.Drawing.Size(820, 519);
|
||||
this.tabUser.TabIndex = 0;
|
||||
this.tabUser.Text = "YOURNAME";
|
||||
//
|
||||
// tabSeason
|
||||
//
|
||||
this.tabSeason.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
||||
this.tabSeason.Controls.Add(this.listViewSeason);
|
||||
this.tabSeason.Location = new System.Drawing.Point(4, 24);
|
||||
this.tabSeason.Name = "tabSeason";
|
||||
this.tabSeason.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tabSeason.Size = new System.Drawing.Size(820, 519);
|
||||
this.tabSeason.TabIndex = 1;
|
||||
this.tabSeason.Text = "Season";
|
||||
//
|
||||
// tabAddAnime
|
||||
//
|
||||
this.tabAddAnime.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
||||
this.tabAddAnime.Location = new System.Drawing.Point(4, 24);
|
||||
this.tabAddAnime.Name = "tabAddAnime";
|
||||
this.tabAddAnime.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tabAddAnime.Size = new System.Drawing.Size(820, 519);
|
||||
this.tabAddAnime.TabIndex = 2;
|
||||
this.tabAddAnime.Text = "Suchen";
|
||||
//
|
||||
// menuStrip
|
||||
//
|
||||
this.menuStrip.BackColor = System.Drawing.Color.Gray;
|
||||
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.memeToolStripMenuItem,
|
||||
this.loginToolStripMenuItem});
|
||||
this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
||||
this.menuStrip.Name = "menuStrip";
|
||||
this.menuStrip.Size = new System.Drawing.Size(828, 24);
|
||||
this.menuStrip.TabIndex = 1;
|
||||
this.menuStrip.Text = "menuStrip";
|
||||
//
|
||||
// memeToolStripMenuItem
|
||||
//
|
||||
this.memeToolStripMenuItem.Name = "memeToolStripMenuItem";
|
||||
this.memeToolStripMenuItem.Size = new System.Drawing.Size(53, 20);
|
||||
this.memeToolStripMenuItem.Text = "Meme";
|
||||
//
|
||||
// loginToolStripMenuItem
|
||||
//
|
||||
this.loginToolStripMenuItem.Name = "loginToolStripMenuItem";
|
||||
this.loginToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
|
||||
this.loginToolStripMenuItem.Text = "Login";
|
||||
this.loginToolStripMenuItem.Click += new System.EventHandler(this.loginToolStripMenuItem_Click);
|
||||
//
|
||||
// listViewSeason
|
||||
//
|
||||
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;
|
||||
//
|
||||
// Main
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
||||
this.ClientSize = new System.Drawing.Size(828, 571);
|
||||
this.Controls.Add(this.tabControl);
|
||||
this.Controls.Add(this.menuStrip);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Name = "Main";
|
||||
this.Text = "APP - Anime plan program";
|
||||
this.tabControl.ResumeLayout(false);
|
||||
this.tabSeason.ResumeLayout(false);
|
||||
this.menuStrip.ResumeLayout(false);
|
||||
this.menuStrip.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private TabControl tabControl;
|
||||
private TabPage tabUser;
|
||||
private TabPage tabSeason;
|
||||
private TabPage tabAddAnime;
|
||||
private MenuStrip menuStrip;
|
||||
private ToolStripMenuItem memeToolStripMenuItem;
|
||||
private ToolStripMenuItem loginToolStripMenuItem;
|
||||
private ListView listViewSeason;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user