Base proj

This commit is contained in:
2022-04-18 13:38:04 +02:00
parent 8f687dd037
commit abb9b3f415
9 changed files with 2119 additions and 59 deletions

65
.gitignore vendored
View File

@@ -1,60 +1,7 @@
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Mm]emoryCaptures/
# Asset meta data should only be ignored when the corresponding asset is also ignored
!/[Aa]ssets/**/*.meta
# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*
# Autogenerated Jetbrains Rider plugin
[Aa]ssets/Plugins/Editor/JetBrains*
# Visual Studio cache directory
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
.idea/
.vs/
# Gradle cache directory
.gradle/
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.mdb
*.opendb
*.VC.db
# Unity3D generated meta files
*.pidb.meta
*.pdb.meta
*.mdb.meta
# Unity3D generated file on crash reports
sysinfo.txt
# Builds
*.apk
*.unitypackage
# Crashlytics generated file
crashlytics-build.properties

16
APP.sln Normal file
View File

@@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "APP", "APP\APP.csproj", "{82CEAC4C-3DE9-48EC-920F-459AE47B3C86}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{82CEAC4C-3DE9-48EC-920F-459AE47B3C86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{82CEAC4C-3DE9-48EC-920F-459AE47B3C86}.Debug|Any CPU.Build.0 = Debug|Any CPU
{82CEAC4C-3DE9-48EC-920F-459AE47B3C86}.Release|Any CPU.ActiveCfg = Release|Any CPU
{82CEAC4C-3DE9-48EC-920F-459AE47B3C86}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

25
APP/APP.csproj Normal file
View File

@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>..\doge.ico</ApplicationIcon>
<Title>Anime plan program</Title>
<Authors>ultrasn0w</Authors>
<Description>Hanami Anime plan program</Description>
<Copyright>Hanami</Copyright>
<Company>HANAMI</Company>
<TargetFramework>net6.0-windows7.0</TargetFramework>
<LangVersion>10</LangVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<None Include="..\doge.ico">
<Link>doge.ico</Link>
</None>
</ItemGroup>
</Project>

8
APP/APP.csproj.user Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="Main.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

154
APP/Main.Designer.cs generated Normal file
View 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;
}
}

25
APP/Main.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace APP
{
public partial class Main : Form
{
public Main()
{
InitializeComponent();
}
private void loginToolStripMenuItem_Click(object sender, EventArgs e)
{
// TODO search for user in backend
}
}
}

1869
APP/Main.resx Normal file

File diff suppressed because it is too large Load Diff

16
APP/Program.cs Normal file
View File

@@ -0,0 +1,16 @@
namespace APP;
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Main());
}
}

BIN
doge.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB