김선호

UI Complete

Showing 72 changed files with 3608 additions and 0 deletions
# lol_op_rating
#2020-11-15
lol api 연동하여 대용량 데이터를 받아 처리하는 과정을 테스트하였습니다.
유저의 데이터를 대용량으로 가져와 처리하는 과정에서 오픈 API 로 제공하는 rating제한보다
많이 요청하여 오류가 생겼습니다. 해당 문제처리를 위해 DB를 사용하여 CSV파일로 만들어 처리해보겠습니다.
#
#
#2020-11-30
MySQL DB 생성하였습니다.
사용자 UI 디자인 시작하여 중간과정까지 코드 업로드하였습니다.
import requests
from urllib import parse
APIKEY="RGAPI-43184546-b903-4eb3-a170-d37ed1de39ff"
headers={
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def all_info(name):
API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
accountid=LOL_API_DATA["accountId"]
API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
getAPI=requests.get(API, headers=headers)
LOL_API_DATA1=getAPI.json()['matches']
kill=0
death=0
ass=0
vision=0
cs=0
time=0
for i in range(0,10):
checkpoint=0
gameid=LOL_API_DATA1[i].get("gameId")
API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
for j in range(0,10):
if(LOL_API_DATA["participantIdentities"][j]["player"]["summonerName"]==name):
checkpoint=j
j=10
kill=kill+LOL_API_DATA["participants"][checkpoint]["stats"]["kills"]
death=death+LOL_API_DATA["participants"][checkpoint]["stats"]["deaths"]
ass=ass+LOL_API_DATA["participants"][checkpoint]["stats"]["assists"]
cs=cs+LOL_API_DATA["participants"][checkpoint]["stats"]["totalMinionsKilled"]+\
LOL_API_DATA["participants"][checkpoint]["stats"]["neutralMinionsKilled"]
vision=vision+LOL_API_DATA["participants"][checkpoint]["stats"]["visionScore"]
time=time+LOL_API_DATA["gameDuration"]
return kill,death,ass,cs,vision,time
import requests
from urllib import parse
APIKEY="RGAPI-43184546-b903-4eb3-a170-d37ed1de39ff"
headers={
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def level(name):
API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
getAPI=requests.get(API, headers=headers)
apidata=getAPI.json()
return apidata["summonerLevel"]
import requests
from urllib import parse
APIKEY="RGAPI-43184546-b903-4eb3-a170-d37ed1de39ff"
headers={
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def game_id(name,num):
API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
accountid=LOL_API_DATA["accountId"]
API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()['matches']
#int값 리턴
return LOL_API_DATA[num].get("gameId")
def country(name):
API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
accountid=LOL_API_DATA["accountId"]
API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()['matches']
#str값리턴
return LOL_API_DATA[0].get("platformId")
def season(name):
API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
accountid=LOL_API_DATA["accountId"]
API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()['matches']
#int값 리턴
return LOL_API_DATA[0].get("season")
import requests
import get_game_info
from urllib import parse
APIKEY="RGAPI-43184546-b903-4eb3-a170-d37ed1de39ff"
headers={
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def opscore(name):
k,d,a,c,v,t=get_game_info.all_info(name)
print(k,d,a,c,v,t)
score=round(((k*3+a*2)/(d*3)),2)+round((c/(t/60)*0.2),2)+round(v*0.05,2)
return score
print(opscore("T1 제우스"))
No preview for this file type
GunaFramework EULA:
License Type
Activation Code is per developer meaning each developer should have a unique activation code. Each code allows up-to two(2) activations (two machines/devices/PCs). If you are collaborating you can have two devices activated using the same activation code.
Subscription
All renewals are paid annually from date of purchase
No run time limitations
When the activation code expires,compiled projects including deployes systems, software, projects developed using our framework will continue to function without any hindrances.
Feature updates
Free feature updates will be made available to all specific products within an active subscription period.
Source code
We do not provide the product (Framework) source code.
Royalties and distribution
You will not pay any royalties for applications you make and deploy using our framework. You can sell and distribute applications you make using our framework, royalty free! No attribution is required.
Resetting and transfers
If you bought a new PC or need to transfer your license to another machine, you can use the framework manager to manage (activate, deactivate and reactivate) your activation codes. Wehave made this for your convenience.
Post expiry
Your compiled applications will continue running even after expiry of license. However, your will not be able to edit your project / solution in design time.
Bug fixing
Will be handled on case by case basis which will dictate the timeframe for resolving bugs.
Free Trial
We provide a 30-day free trial for all users. Upon trial expiry, you will need to purchase to continue using the product.
Activation process
All activations are online. This means you will need internet to activate. There are no offline activations. During activation process we will collect personal info such as your email so that we activate your code. Please see our privacy policy.
Licensing changes
We reserve the right to modify the licensing from time to time without notice.Please visit this section of the website to keep up-to-date with latest terms.
Last updated 10 January, 2020

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29519.181
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "project", "project\project.csproj", "{EBED33C0-6AB0-42C8-BCF3-6814FD9026FA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EBED33C0-6AB0-42C8-BCF3-6814FD9026FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EBED33C0-6AB0-42C8-BCF3-6814FD9026FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EBED33C0-6AB0-42C8-BCF3-6814FD9026FA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EBED33C0-6AB0-42C8-BCF3-6814FD9026FA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {190578EC-8F7B-42CF-8167-BE98F7B259DE}
EndGlobalSection
EndGlobal
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
\ No newline at end of file
namespace project
{
partial class Form1
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.panel1 = new System.Windows.Forms.Panel();
this.guna2Button3 = new Guna.UI2.WinForms.Guna2Button();
this.guna2Button2 = new Guna.UI2.WinForms.Guna2Button();
this.guna2Button1 = new Guna.UI2.WinForms.Guna2Button();
this.label1 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel2 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.guna2TextBox1 = new Guna.UI2.WinForms.Guna2TextBox();
this.exit = new Guna.UI2.WinForms.Guna2Button();
this.label17 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.notice1 = new project.UserControls.notice();
this.manual1 = new project.UserControls.manual();
this.main1 = new project.UserControls.main();
this.white1 = new project.UserControls.white();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panel2.SuspendLayout();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.guna2Button3);
this.panel1.Controls.Add(this.guna2Button2);
this.panel1.Controls.Add(this.guna2Button1);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(180, 608);
this.panel1.TabIndex = 0;
//
// guna2Button3
//
this.guna2Button3.BackColor = System.Drawing.Color.Transparent;
this.guna2Button3.BorderRadius = 22;
this.guna2Button3.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.RadioButton;
this.guna2Button3.CheckedState.BorderColor = System.Drawing.Color.White;
this.guna2Button3.CheckedState.CustomBorderColor = System.Drawing.Color.White;
this.guna2Button3.CheckedState.FillColor = System.Drawing.Color.White;
this.guna2Button3.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2Button3.CheckedState.Parent = this.guna2Button3;
this.guna2Button3.CustomImages.Parent = this.guna2Button3;
this.guna2Button3.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2Button3.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.guna2Button3.ForeColor = System.Drawing.Color.White;
this.guna2Button3.HoverState.Parent = this.guna2Button3;
this.guna2Button3.ImageAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.guna2Button3.ImageOffset = new System.Drawing.Point(10, 0);
this.guna2Button3.Location = new System.Drawing.Point(12, 175);
this.guna2Button3.Name = "guna2Button3";
this.guna2Button3.ShadowDecoration.Parent = this.guna2Button3;
this.guna2Button3.Size = new System.Drawing.Size(163, 43);
this.guna2Button3.TabIndex = 4;
this.guna2Button3.Text = "MANUAL";
this.guna2Button3.UseTransparentBackground = true;
this.guna2Button3.CheckedChanged += new System.EventHandler(this.guna2Button1_CheckedChanged);
this.guna2Button3.Click += new System.EventHandler(this.guna2Button3_Click);
//
// guna2Button2
//
this.guna2Button2.BackColor = System.Drawing.Color.Transparent;
this.guna2Button2.BorderRadius = 22;
this.guna2Button2.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.RadioButton;
this.guna2Button2.CheckedState.BorderColor = System.Drawing.Color.White;
this.guna2Button2.CheckedState.CustomBorderColor = System.Drawing.Color.White;
this.guna2Button2.CheckedState.FillColor = System.Drawing.Color.White;
this.guna2Button2.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2Button2.CheckedState.Parent = this.guna2Button2;
this.guna2Button2.CustomImages.Parent = this.guna2Button2;
this.guna2Button2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2Button2.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.guna2Button2.ForeColor = System.Drawing.Color.White;
this.guna2Button2.HoverState.Parent = this.guna2Button2;
this.guna2Button2.ImageAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.guna2Button2.ImageOffset = new System.Drawing.Point(10, 0);
this.guna2Button2.Location = new System.Drawing.Point(12, 392);
this.guna2Button2.Name = "guna2Button2";
this.guna2Button2.ShadowDecoration.Parent = this.guna2Button2;
this.guna2Button2.Size = new System.Drawing.Size(163, 43);
this.guna2Button2.TabIndex = 3;
this.guna2Button2.Text = "NOTICE";
this.guna2Button2.UseTransparentBackground = true;
this.guna2Button2.CheckedChanged += new System.EventHandler(this.guna2Button1_CheckedChanged);
this.guna2Button2.Click += new System.EventHandler(this.guna2Button2_Click);
//
// guna2Button1
//
this.guna2Button1.BackColor = System.Drawing.Color.Transparent;
this.guna2Button1.BorderRadius = 22;
this.guna2Button1.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.RadioButton;
this.guna2Button1.Checked = true;
this.guna2Button1.CheckedState.BorderColor = System.Drawing.Color.White;
this.guna2Button1.CheckedState.CustomBorderColor = System.Drawing.Color.White;
this.guna2Button1.CheckedState.FillColor = System.Drawing.Color.White;
this.guna2Button1.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2Button1.CheckedState.Image = ((System.Drawing.Image)(resources.GetObject("guna2Button1.CheckedState.Image")));
this.guna2Button1.CheckedState.Parent = this.guna2Button1;
this.guna2Button1.CustomImages.Parent = this.guna2Button1;
this.guna2Button1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2Button1.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.guna2Button1.ForeColor = System.Drawing.Color.White;
this.guna2Button1.HoverState.Parent = this.guna2Button1;
this.guna2Button1.ImageAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.guna2Button1.ImageOffset = new System.Drawing.Point(10, 0);
this.guna2Button1.Location = new System.Drawing.Point(12, 105);
this.guna2Button1.Name = "guna2Button1";
this.guna2Button1.ShadowDecoration.Parent = this.guna2Button1;
this.guna2Button1.Size = new System.Drawing.Size(163, 43);
this.guna2Button1.TabIndex = 2;
this.guna2Button1.Text = "MAIN";
this.guna2Button1.UseTransparentBackground = true;
this.guna2Button1.CheckedChanged += new System.EventHandler(this.guna2Button1_CheckedChanged);
this.guna2Button1.Click += new System.EventHandler(this.guna2Button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(68, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(105, 23);
this.label1.TabIndex = 1;
this.label1.Text = "TROLL.GG";
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(12, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(50, 50);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// panel2
//
this.panel2.BackColor = System.Drawing.Color.White;
this.panel2.Controls.Add(this.white1);
this.panel2.Controls.Add(this.notice1);
this.panel2.Controls.Add(this.manual1);
this.panel2.Controls.Add(this.main1);
this.panel2.Controls.Add(this.label17);
this.panel2.Controls.Add(this.label16);
this.panel2.Controls.Add(this.label15);
this.panel2.Controls.Add(this.label14);
this.panel2.Controls.Add(this.label13);
this.panel2.Controls.Add(this.label12);
this.panel2.Controls.Add(this.label11);
this.panel2.Controls.Add(this.label10);
this.panel2.Controls.Add(this.label9);
this.panel2.Controls.Add(this.label8);
this.panel2.Controls.Add(this.label7);
this.panel2.Controls.Add(this.label6);
this.panel2.Controls.Add(this.label5);
this.panel2.Controls.Add(this.label4);
this.panel2.Controls.Add(this.label3);
this.panel2.Controls.Add(this.label2);
this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel2.Location = new System.Drawing.Point(180, 91);
this.panel2.Name = "panel2";
this.panel2.Padding = new System.Windows.Forms.Padding(0, 6, 6, 6);
this.panel2.Size = new System.Drawing.Size(892, 517);
this.panel2.TabIndex = 1;
//
// panel3
//
this.panel3.Controls.Add(this.exit);
this.panel3.Controls.Add(this.guna2TextBox1);
this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel3.Location = new System.Drawing.Point(180, 0);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(892, 91);
this.panel3.TabIndex = 2;
this.panel3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel3_MouseDown);
this.panel3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel3_MouseMove);
//
// guna2TextBox1
//
this.guna2TextBox1.BorderRadius = 15;
this.guna2TextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
this.guna2TextBox1.DefaultText = "";
this.guna2TextBox1.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208)))));
this.guna2TextBox1.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226)))));
this.guna2TextBox1.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.guna2TextBox1.DisabledState.Parent = this.guna2TextBox1;
this.guna2TextBox1.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.guna2TextBox1.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.guna2TextBox1.FocusedState.Parent = this.guna2TextBox1;
this.guna2TextBox1.Font = new System.Drawing.Font("Century Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.guna2TextBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2TextBox1.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.guna2TextBox1.HoverState.Parent = this.guna2TextBox1;
this.guna2TextBox1.IconLeft = ((System.Drawing.Image)(resources.GetObject("guna2TextBox1.IconLeft")));
this.guna2TextBox1.IconLeftOffset = new System.Drawing.Point(5, 0);
this.guna2TextBox1.Location = new System.Drawing.Point(28, 26);
this.guna2TextBox1.Name = "guna2TextBox1";
this.guna2TextBox1.PasswordChar = '\0';
this.guna2TextBox1.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.guna2TextBox1.PlaceholderText = "Search Username";
this.guna2TextBox1.SelectedText = "";
this.guna2TextBox1.ShadowDecoration.Parent = this.guna2TextBox1;
this.guna2TextBox1.Size = new System.Drawing.Size(200, 36);
this.guna2TextBox1.TabIndex = 4;
this.guna2TextBox1.TextOffset = new System.Drawing.Point(1, 0);
this.guna2TextBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.guna2TextBox1_KeyUp);
//
// exit
//
this.exit.BorderRadius = 19;
this.exit.CheckedState.Parent = this.exit;
this.exit.CustomImages.Parent = this.exit;
this.exit.FillColor = System.Drawing.Color.White;
this.exit.Font = new System.Drawing.Font("Segoe UI", 9F);
this.exit.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.exit.HoverState.Parent = this.exit;
this.exit.Image = ((System.Drawing.Image)(resources.GetObject("exit.Image")));
this.exit.Location = new System.Drawing.Point(845, 12);
this.exit.Name = "exit";
this.exit.ShadowDecoration.Parent = this.exit;
this.exit.Size = new System.Drawing.Size(35, 35);
this.exit.TabIndex = 5;
this.exit.Click += new System.EventHandler(this.exit_Click);
//
// label17
//
this.label17.AutoSize = true;
this.label17.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label17.Location = new System.Drawing.Point(334, 212);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(21, 23);
this.label17.TabIndex = 31;
this.label17.Text = "0";
//
// label16
//
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label16.Location = new System.Drawing.Point(334, 392);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(21, 23);
this.label16.TabIndex = 30;
this.label16.Text = "0";
//
// label15
//
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label15.Location = new System.Drawing.Point(334, 347);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(21, 23);
this.label15.TabIndex = 29;
this.label15.Text = "0";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label14.Location = new System.Drawing.Point(334, 302);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(21, 23);
this.label14.TabIndex = 28;
this.label14.Text = "0";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label13.Location = new System.Drawing.Point(334, 257);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(21, 23);
this.label13.TabIndex = 27;
this.label13.Text = "0";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label12.Location = new System.Drawing.Point(334, 167);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(21, 23);
this.label12.TabIndex = 26;
this.label12.Text = "0";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label11.Location = new System.Drawing.Point(176, 392);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(126, 23);
this.label11.TabIndex = 25;
this.label11.Text = "ACE SCORE :";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label10.Location = new System.Drawing.Point(210, 347);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(83, 23);
this.label10.TabIndex = 24;
this.label10.Text = "VISION :";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label9.Location = new System.Drawing.Point(241, 302);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(45, 23);
this.label9.TabIndex = 23;
this.label9.Text = "CS :";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label8.Location = new System.Drawing.Point(215, 257);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(78, 23);
this.label8.TabIndex = 22;
this.label8.Text = "DEATH :";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label7.Location = new System.Drawing.Point(216, 212);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(77, 23);
this.label7.TabIndex = 21;
this.label7.Text = "ASSIST :";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label6.Location = new System.Drawing.Point(234, 167);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(53, 23);
this.label6.TabIndex = 20;
this.label6.Text = "KILL :";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label5.Location = new System.Drawing.Point(577, 94);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(95, 22);
this.label5.TabIndex = 19;
this.label5.Text = "유저입니다.";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label4.Location = new System.Drawing.Point(432, 94);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(148, 22);
this.label4.TabIndex = 18;
this.label4.Text = "평범한 실력을 가진";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(241, 94);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(90, 22);
this.label3.TabIndex = 17;
this.label3.Text = "카나리아사";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(370, 94);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(56, 22);
this.label2.TabIndex = 16;
this.label2.Text = "은(는)";
//
// notice1
//
this.notice1.BackColor = System.Drawing.Color.White;
this.notice1.Dock = System.Windows.Forms.DockStyle.Fill;
this.notice1.Location = new System.Drawing.Point(0, 6);
this.notice1.Margin = new System.Windows.Forms.Padding(30, 80, 30, 80);
this.notice1.Name = "notice1";
this.notice1.Size = new System.Drawing.Size(886, 505);
this.notice1.TabIndex = 34;
this.notice1.Visible = false;
//
// manual1
//
this.manual1.BackColor = System.Drawing.Color.White;
this.manual1.Dock = System.Windows.Forms.DockStyle.Fill;
this.manual1.Location = new System.Drawing.Point(0, 6);
this.manual1.Margin = new System.Windows.Forms.Padding(30, 80, 30, 80);
this.manual1.Name = "manual1";
this.manual1.Size = new System.Drawing.Size(886, 505);
this.manual1.TabIndex = 33;
this.manual1.Visible = false;
//
// main1
//
this.main1.BackColor = System.Drawing.Color.White;
this.main1.Dock = System.Windows.Forms.DockStyle.Fill;
this.main1.Location = new System.Drawing.Point(0, 6);
this.main1.Margin = new System.Windows.Forms.Padding(30, 80, 30, 80);
this.main1.Name = "main1";
this.main1.Size = new System.Drawing.Size(886, 505);
this.main1.TabIndex = 32;
this.main1.Visible = false;
//
// white1
//
this.white1.BackColor = System.Drawing.Color.White;
this.white1.Dock = System.Windows.Forms.DockStyle.Fill;
this.white1.Location = new System.Drawing.Point(0, 6);
this.white1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.white1.Name = "white1";
this.white1.Size = new System.Drawing.Size(886, 505);
this.white1.TabIndex = 35;
this.white1.Visible = false;
//
// Form1
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.ClientSize = new System.Drawing.Size(1072, 608);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ForeColor = System.Drawing.Color.Black;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.panel3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private Guna.UI2.WinForms.Guna2Button guna2Button2;
private Guna.UI2.WinForms.Guna2Button guna2Button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox pictureBox1;
private Guna.UI2.WinForms.Guna2Button guna2Button3;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Panel panel3;
private Guna.UI2.WinForms.Guna2Button exit;
private Guna.UI2.WinForms.Guna2TextBox guna2TextBox1;
private UserControls.notice notice1;
private UserControls.manual manual1;
private UserControls.main main1;
private UserControls.white white1;
}
}
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 project
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
main1.Show();
label2.SendToBack();
label3.SendToBack();
label4.SendToBack();
label5.SendToBack();
label6.SendToBack();
label7.SendToBack();
label8.SendToBack();
label9.SendToBack();
label10.SendToBack();
label11.SendToBack();
label12.SendToBack();
label13.SendToBack();
label14.SendToBack();
label15.SendToBack();
label16.SendToBack();
label17.SendToBack();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void guna2Button1_CheckedChanged(object sender, EventArgs e)
{
}
private Point mousePoint;
private void panel3_MouseDown(object sender, MouseEventArgs e)
{
mousePoint = new Point(e.X, e.Y);
}
private void panel3_MouseMove(object sender, MouseEventArgs e)
{
if ((e.Button & MouseButtons.Left) == MouseButtons.Left) //마우스 왼쪽 클릭 시에만 실행
{
//폼의 위치를 드래그중인 마우스의 좌표로 이동
Location = new Point(Left - (mousePoint.X - e.X), Top - (mousePoint.Y - e.Y));
}
}
private void exit_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void guna2Button1_Click(object sender, EventArgs e)
{
main1.Show();
manual1.SendToBack();
notice1.SendToBack();
white1.SendToBack();
label2.SendToBack();
label3.SendToBack();
label4.SendToBack();
label5.SendToBack();
label6.SendToBack();
label7.SendToBack();
label8.SendToBack();
label9.SendToBack();
label10.SendToBack();
label11.SendToBack();
label12.SendToBack();
label13.SendToBack();
label14.SendToBack();
label15.SendToBack();
label16.SendToBack();
label17.SendToBack();
}
private void guna2Button3_Click(object sender, EventArgs e)
{
manual1.Show();
main1.SendToBack();
notice1.SendToBack();
white1.SendToBack();
label2.SendToBack();
label3.SendToBack();
label4.SendToBack();
label5.SendToBack();
label6.SendToBack();
label7.SendToBack();
label8.SendToBack();
label9.SendToBack();
label10.SendToBack();
label11.SendToBack();
label12.SendToBack();
label13.SendToBack();
label14.SendToBack();
label15.SendToBack();
label16.SendToBack();
label17.SendToBack();
}
private void guna2Button2_Click(object sender, EventArgs e)
{
notice1.Show();
manual1.SendToBack();
main1.SendToBack();
white1.SendToBack();
label2.SendToBack();
label3.SendToBack();
label4.SendToBack();
label5.SendToBack();
label6.SendToBack();
label7.SendToBack();
label8.SendToBack();
label9.SendToBack();
label10.SendToBack();
label11.SendToBack();
label12.SendToBack();
label13.SendToBack();
label14.SendToBack();
label15.SendToBack();
label16.SendToBack();
label17.SendToBack();
}
private void guna2TextBox1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
white1.Show();
main1.SendToBack();
manual1.SendToBack();
notice1.SendToBack();
label2.BringToFront();
label3.BringToFront();
label4.BringToFront();
label5.BringToFront();
label6.BringToFront();
label7.BringToFront();
label8.BringToFront();
label9.BringToFront();
label10.BringToFront();
label11.BringToFront();
label12.BringToFront();
label13.BringToFront();
label14.BringToFront();
label15.BringToFront();
label16.BringToFront();
label17.BringToFront();
var name=guna2TextBox1.Text;
guna2TextBox1.Text = name+"11";
}
}
/*
label2.SendToBack();
label3.SendToBack();
label4.SendToBack();
label5.SendToBack();
label6.SendToBack();
label7.SendToBack();
label8.SendToBack();
label9.SendToBack();
label10.SendToBack();
label11.SendToBack();
label12.SendToBack();
label13.SendToBack();
label14.SendToBack();
label15.SendToBack();
label16.SendToBack();
label17.SendToBack();
*/
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="panel1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="guna2Button3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="guna2Button2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="guna2Button1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="guna2Button1.CheckedState.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACgAAAApCAYAAABHomvIAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS
dAAAEnQB3mYfeAAAA3hJREFUWEftmM1LVFEYxk+LiKg/oBZBBEF/QEbQokVEqzZtWhnlt46OzowGhbnI
kkikKCLaFBmhpm0KdKGljdqo06jjXB2lMMzvVLRMF5m+Pcd7dL7OzNy5czWheeBhYOa87/nNPfc+58ww
2uH6fwBXlhboafMQlb1ykN07hXfW1A/ilCGAlpfdxJJbieV6iJkVYtl9xDIbaWJ6VozQr7gBz92uJ2bq
J3aVG3AbLhwgdrmNPB5FjNSnuACPVwAkzw8q2EWATuuh1sFpURG7dAKu0bGbXYDDksrA/F0Ep7mo3vlZ
1MYmHYDLdLCwiVh+0JJGModMdVFlQ4fooV0xAq7SPmsbMUsMcP4GZEXTiOilTdoBV5dol8UJOMnEsTjd
TSWv+0TT6NIG+GuWWA5ixCqZUI+zPJT9pFk0j6yogD8X5oldalBjQzaZXucodOFRl5glvCICTn6fw7d1
AU7nPRfNJg+dfdArZpMrLOCX4RHc1B2AkzQ20rkKnbj1QcwaKimgwzuGZbWrQStrarTN/XSkuF3MHqgQ
wEY34JD+2wa34XyFDpTw5f6jgggFANbaAZWCe44Hq6zJVrtAof02fiWXVSBoE/BhPU4gCFJp4XbairTI
aBBUArCpZxhwbnnBvzAgd5vtPsCTFb3YITRs/NvpzD7yfptRAc+Ut+vfX7fKab00OoYHlgMOfR3Fidih
7rPr25keWNTY8GrDq97s5BsCn9+k0NHr7zia7yFRhsfp9H03nbrbiXMeYLVCchh+aL3SQodvOCip1E57
LKhPRR++KloTAXCHrtkp6Y6TzNUDIFLjZhPQXyy5BkXe0CbBtgLA1EEv3ntQFZhfi/MzdP4eDhhZSAct
kAjrx29CwzoMYC2KogBiKfdaWjF6RS0Ko6oWfAnc8KwoykMIwPK6NlHlkz5AfkUyOzHSF6iRVFwHwGg/
DwwFNHuo7O2gGK1FazgU4J6M9PAYCpjRTb8X58Robcp4jqwtiHAVDQPkh4hsNeVj0bPmQSwzllrWk9sw
QL5MVpcYqV01zkk88RG2U0MBLZ/ESO2q7ppIAKpOAAYqAbghYwEv8sMCcovvn8G2wQWxA1Z1AjAHgLKe
3HkDVFoVmq9SwPV/TFNwEslHsJrR1N95sCn6PwLBqvw4TiwdvxaD+60bgCn1NDX3Q4z2SQq4k5QAjE9E
fwG3dE3EZV1GJgAAAABJRU5ErkJggg==
</value>
</data>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="pictureBox1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="pictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS
dAAAEnQB3mYfeAAAAk9JREFUaEPtmMtPE1EUh+/CpSTG/461VncQoxgX6sKlmkiMaTtJDZQFMSzUBRgi
uvCxonVa+hhoAwot7cwUSAg+YlvNzzN4m5J5gMV7y7S5X/JL05vbc843t50mwzAkKJGwoUTChq/I9/Zv
vKk38cE+u7y3W3heaQLtb3yq4/EVSe00wSarYFrtjFKn/jU8/pjiE52Mr8jKXutvwRmr/0lS4ibm9Cyf
5t8Il4gjEbPxItObhEN4RByJqI35bIZP0RvhEDk8CROL+RyfwMvCsoHN3R/8nZfeRZIm2LTgxOt4VVzl
3b2kiyWw0WWYB7/4ipfeRLjExWc2RmbFhM00sGCUeWcvmbUy2BWdkkHja5uveuld5Gmd75JPmgTZVZK4
UaBX0SKJ/oikCqtdiZsDKvIu/wUsckRiUEVGZ6n32EpXYlBFLs1R73El0kWJEE8MC/fzJh4WgnMvW8Pe
zxb/hJdQiEyVdxBbs6GVGoF5VLSw3wweSom4USKEEjmCEnGjRIihERmaP0QRKBE3gSLTFK3Cd8lDrojz
yEarYmN7g++ShzyRpA0Wq2Czts53yEWOyKHEFmxL/kl0EC/SkTD7cxIdxl7STUWYSJyKaVuo1kp81Ut0
yWliYOSOuFy4a+DcLao7kf9/kfRuG2zyM6rbwRLa6ywVp6t2nRqKjlvitCKfrH3o68HPYhNLOlgkRw1d
zWTmNCLHEV3MkIRz1XyayYxIkQfzJHFZ0tfppER02AcCRBJvqdh4Aedv+/9IZYddy4kRCTtKJGwokbCh
RMIF8Ad6d1L2kzimuAAAAABJRU5ErkJggg==
</value>
</data>
<metadata name="panel2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="white1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="notice1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="manual1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="main1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label17.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label16.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label15.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label14.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label13.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label12.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label11.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label10.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label9.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label8.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="panel3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="exit.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="exit.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<metadata name="guna2TextBox1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="guna2TextBox1.IconLeft" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
</root>
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project
{
static class Program
{
/// <summary>
/// 해당 애플리케이션의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해
// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
// 이러한 특성 값을 변경하세요.
[assembly: AssemblyTitle("project")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("project")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에
// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
[assembly: ComVisible(false)]
// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다.
[assembly: Guid("ebed33c0-6ab0-42c8-bcf3-6814fd9026fa")]
// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
//
// 주 버전
// 부 버전
// 빌드 번호
// 수정 버전
//
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//------------------------------------------------------------------------------
// <auto-generated>
// 이 코드는 도구를 사용하여 생성되었습니다.
// 런타임 버전:4.0.30319.42000
//
// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
// 이러한 변경 내용이 손실됩니다.
// </auto-generated>
//------------------------------------------------------------------------------
namespace project.Properties
{
/// <summary>
/// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
/// </summary>
// 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
// 클래스에서 자동으로 생성되었습니다.
// 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여
// ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("project.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
/// 재정의합니다.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace project.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>
namespace project.UserControls
{
partial class main
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(249, 220);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(339, 22);
this.label3.TabIndex = 13;
this.label3.Text = "당신의 팀 멤버가 트롤유저인지 검색해보세요.";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(165, 160);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(507, 22);
this.label2.TabIndex = 12;
this.label2.Text = "TROLL.GG는 트롤에 지친 유저분들에게 유용한 정보를 제공합니다.";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label1.Location = new System.Drawing.Point(249, 77);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(338, 37);
this.label1.TabIndex = 11;
this.label1.Text = "Welcome to TROLL.GG";
//
// main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "main";
this.Size = new System.Drawing.Size(892, 450);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class main : UserControl
{
public main()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
\ No newline at end of file
namespace project.UserControls
{
partial class main_box
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.guna2ContextMenuStrip1 = new Guna.UI2.WinForms.Guna2ContextMenuStrip();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// guna2ContextMenuStrip1
//
this.guna2ContextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.guna2ContextMenuStrip1.Name = "guna2ContextMenuStrip1";
this.guna2ContextMenuStrip1.RenderStyle.ArrowColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(143)))), ((int)(((byte)(255)))));
this.guna2ContextMenuStrip1.RenderStyle.BorderColor = System.Drawing.Color.Gainsboro;
this.guna2ContextMenuStrip1.RenderStyle.ColorTable = null;
this.guna2ContextMenuStrip1.RenderStyle.RoundedEdges = true;
this.guna2ContextMenuStrip1.RenderStyle.SelectionArrowColor = System.Drawing.Color.White;
this.guna2ContextMenuStrip1.RenderStyle.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(88)))), ((int)(((byte)(255)))));
this.guna2ContextMenuStrip1.RenderStyle.SelectionForeColor = System.Drawing.Color.White;
this.guna2ContextMenuStrip1.RenderStyle.SeparatorColor = System.Drawing.Color.Gainsboro;
this.guna2ContextMenuStrip1.RenderStyle.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault;
this.guna2ContextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label1.Location = new System.Drawing.Point(279, 152);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(338, 37);
this.label1.TabIndex = 8;
this.label1.Text = "Welcome to TROLL.GG";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(198, 235);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(507, 22);
this.label2.TabIndex = 9;
this.label2.Text = "TROLL.GG는 트롤에 지친 유저분들에게 유용한 정보를 제공합니다.";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(265, 295);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(339, 22);
this.label3.TabIndex = 10;
this.label3.Text = "당신의 팀 멤버가 트롤유저인지 검색해보세요.";
//
// main_box
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "main_box";
this.Size = new System.Drawing.Size(892, 530);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Guna.UI2.WinForms.Guna2ContextMenuStrip guna2ContextMenuStrip1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class main_box : UserControl
{
public main_box()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="guna2ContextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>
\ No newline at end of file
namespace project.UserControls
{
partial class manual
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label4.Location = new System.Drawing.Point(203, 280);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(455, 22);
this.label4.TabIndex = 18;
this.label4.Text = "3. 검색한 유저의 게임 정보와 최근 플레이 점수를 출력합니다.";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(229, 223);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(402, 22);
this.label3.TabIndex = 17;
this.label3.Text = "2. 유저의 정보를 가져오는 동안 잠시 시간이 걸립니다.";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(269, 164);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(322, 22);
this.label2.TabIndex = 16;
this.label2.Text = "1. 유저이름을 입력하고 Enter을 누릅니다.";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label1.Location = new System.Drawing.Point(228, 77);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(405, 37);
this.label1.TabIndex = 15;
this.label1.Text = "검색창에 유저이름을 검색하세요.";
//
// manual
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "manual";
this.Size = new System.Drawing.Size(892, 450);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class manual : UserControl
{
public manual()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
\ No newline at end of file
namespace project.UserControls
{
partial class manualbox
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(201, 182);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(368, 20);
this.label3.TabIndex = 13;
this.label3.Text = "2. 유저의 정보를 가져오는 동안 잠시 시간이 걸립니다.";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(241, 135);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(288, 20);
this.label2.TabIndex = 12;
this.label2.Text = "1. 유저이름을 입력하고 Enter을 누릅니다.";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label1.Location = new System.Drawing.Point(229, 66);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(313, 28);
this.label1.TabIndex = 11;
this.label1.Text = "검색창에 유저이름을 검색하세요.";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label4.Location = new System.Drawing.Point(186, 228);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(398, 20);
this.label4.TabIndex = 14;
this.label4.Text = "3. 검색한 유저의 게임 정보와 트롤유저 여부를 출력합니다.";
//
// manualbox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "manualbox";
this.Size = new System.Drawing.Size(892, 530);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label4;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class manualbox : UserControl
{
public manualbox()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
\ No newline at end of file
namespace project.UserControls
{
partial class notice
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label4.Location = new System.Drawing.Point(164, 296);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(505, 22);
this.label4.TabIndex = 22;
this.label4.Text = "3. MANUAL설명 외의 비정상적 입력은 문제가 발생할 수 있습니다.";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(143, 220);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(546, 22);
this.label3.TabIndex = 21;
this.label3.Text = "2. 최근 전적들을 기준으로 플레이점수를 측정하여 트롤여부를 판단합니다.";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(135, 152);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(563, 22);
this.label2.TabIndex = 20;
this.label2.Text = "1. DB와 LOL API를 통해 가져오는 데이터로 KR서버만 검색이 가능합니다.";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label1.Location = new System.Drawing.Point(356, 76);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(121, 37);
this.label1.TabIndex = 19;
this.label1.Text = "주의사항";
//
// notice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "notice";
this.Size = new System.Drawing.Size(892, 450);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class notice : UserControl
{
public notice()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
\ No newline at end of file
namespace project.UserControls
{
partial class noticebox
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label4.Location = new System.Drawing.Point(154, 242);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(453, 20);
this.label4.TabIndex = 18;
this.label4.Text = "3. MANUAL설명 외의 비정상적 입력은 문제가 발생할 수 있습니다.";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label3.Location = new System.Drawing.Point(206, 184);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(349, 20);
this.label3.TabIndex = 17;
this.label3.Text = "2. 최근 전적들을 기준으로 트롤여부를 평가합니다. ";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label2.Location = new System.Drawing.Point(130, 126);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(500, 20);
this.label2.TabIndex = 16;
this.label2.Text = "1. DB와 LOL API를 통해 가져오는 데이터로 KR서버만 검색이 가능합니다.";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(118)))), ((int)(((byte)(212)))));
this.label1.Location = new System.Drawing.Point(334, 66);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(92, 28);
this.label1.TabIndex = 15;
this.label1.Text = "주의사항";
//
// noticebox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "noticebox";
this.Size = new System.Drawing.Size(892, 530);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class noticebox : UserControl
{
public noticebox()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
\ No newline at end of file
namespace project.UserControls
{
partial class white
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 구성 요소 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.SuspendLayout();
//
// white
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Name = "white";
this.Size = new System.Drawing.Size(892, 530);
this.ResumeLayout(false);
}
#endregion
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace project.UserControls
{
public partial class white : UserControl
{
public white()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
\ No newline at end of file
No preview for this file type
No preview for this file type
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
\ No newline at end of file
No preview for this file type
C:\Users\ksh970\source\repos\project\project\bin\Debug\project.exe.config
C:\Users\ksh970\source\repos\project\project\bin\Debug\project.exe
C:\Users\ksh970\source\repos\project\project\bin\Debug\project.pdb
C:\Users\ksh970\source\repos\project\project\bin\Debug\Guna.UI2.dll
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.csprojAssemblyReference.cache
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.Form1.resources
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.Properties.Resources.resources
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.csproj.GenerateResource.cache
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.csproj.CopyComplete
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.exe
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.pdb
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.UserControls.main.resources
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.UserControls.manual.resources
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.UserControls.notice.resources
C:\Users\ksh970\source\repos\project\project\obj\Debug\project.UserControls.white.resources
No preview for this file type
No preview for this file type
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Guna.UI2.WinForms" version="2.0.1.2" targetFramework="net472" />
</packages>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{EBED33C0-6AB0-42C8-BCF3-6814FD9026FA}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>project</RootNamespace>
<AssemblyName>project</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Guna.UI2, Version=2.0.1.2, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Guna.UI2.WinForms.2.0.1.2\lib\net40\Guna.UI2.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="UserControls\main.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UserControls\main.Designer.cs">
<DependentUpon>main.cs</DependentUpon>
</Compile>
<Compile Include="UserControls\manual.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UserControls\manual.Designer.cs">
<DependentUpon>manual.cs</DependentUpon>
</Compile>
<Compile Include="UserControls\notice.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UserControls\notice.Designer.cs">
<DependentUpon>notice.cs</DependentUpon>
</Compile>
<Compile Include="UserControls\white.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UserControls\white.Designer.cs">
<DependentUpon>white.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<EmbeddedResource Include="UserControls\main.resx">
<DependentUpon>main.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UserControls\manual.resx">
<DependentUpon>manual.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UserControls\notice.resx">
<DependentUpon>notice.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UserControls\white.resx">
<DependentUpon>white.cs</DependentUpon>
</EmbeddedResource>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
\ No newline at end of file
import pymysql
from openpyxl import Workbook
from openpyxl import load_workbook
project=pymysql.connect(
user='root',
passwd='!!fnsldkwjsrl11',
host='127.0.0.1',
charset='utf8'
)
cursor=project.cursor()
cursor.execute("CREATE DATABASE LOL")
\ No newline at end of file
import requests
from urllib import parse
name=parse.quote(input("검색을 원하는 유저 이름을 입력하세요"))
APIKEY="RGAPI-43184546-b903-4eb3-a170-d37ed1de39ff"
headers={
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def get_account_id():
API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
return LOL_API_DATA["accountId"]
def return_key():
return APIKEY
def return_name():
return name
import Get_Account_Id
import requests
accountid=Get_Account_Id.get_account_id()
APIKEY=Get_Account_Id.return_key()
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()['matches']
def get_game_id(index):
return LOL_API_DATA[index].get("gameId")
def get_champ_id(index):
return LOL_API_DATA[index].get("champion")
# lol_op_rating
#2020-11-15
lol api 연동하여 대용량 데이터를 받아 처리하는 과정을 테스트하였습니다.
유저의 데이터를 대용량으로 가져와 처리하는 과정에서 오픈 API 로 제공하는 rating제한보다
많이 요청하여 오류가 생겼습니다. 해당 문제처리를 위해 DB를 사용하여 CSV파일로 만들어 처리해보겠습니다.
#
#
#2020-11-30
MySQL DB 생성하였습니다.
사용자 UI 디자인 시작하여 중간과정까지 코드 업로드하였습니다.
import Get_Account_Id
import Get_Game_Id
import requests
APIKEY=Get_Account_Id.return_key()
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def op_score(ac_id):
API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + ac_id
getAPI=requests.get(API, headers=headers)
DATA=getAPI.json()["matches"]
score=0
for i in range(0,5):
score+=first_step(DATA[i].get("gameId"),ac_id)
return round(score,2)
def first_step(gameid,ac_id):
API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
print(gameid)
getAPI=requests.get(API, headers=headers)
f_step_api=getAPI.json()
t_score=0
for i in range(0,10):
if (f_step_api["participantIdentities"][i]["player"]["accountId"]==ac_id):
if f_step_api["participants"][i]["stats"]["deaths"]==0:
t_score=round((f_step_api["participants"][i]["stats"]["kills"]*3+f_step_api["participants"][i]["stats"]["assists"]*0.5)/\
1,2)+round(f_step_api["participants"][i]["stats"]["totalMinionsKilled"]\
/(f_step_api["gameDuration"]/60)*0.2,2)+round(f_step_api["participants"][i]["stats"]["visionScore"]*0.05,2)
else:
t_score=round((f_step_api["participants"][i]["stats"]["kills"]*3+f_step_api["participants"][i]["stats"]["assists"]*0.5)/\
(f_step_api["participants"][i]["stats"]["deaths"]*3),2)+round(f_step_api["participants"][i]["stats"]["totalMinionsKilled"]\
/(f_step_api["gameDuration"]/60)*0.2,2)+round(f_step_api["participants"][i]["stats"]["visionScore"]*0.05,2)
i=10
return t_score
import Get_Account_Id
import Get_Game_Id
import check_score
import requests
APIKEY=Get_Account_Id.return_key()
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
"Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://developer.riotgames.com",
"X-Riot-Token": APIKEY
}
def game_result(num):
champid=Get_Game_Id.get_champ_id(num)
gameid=Get_Game_Id.get_game_id(num)
API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
result=" "
for i in range(0,10):
if LOL_API_DATA["participants"][i]["championId"]==champid:
if LOL_API_DATA["participants"][i]["stats"]["win"]==True:
result="승리"
else:
result="패배"
return result
def match_user_name_and_opscore(num):
gameid=Get_Game_Id.get_game_id(num)
API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
getAPI=requests.get(API, headers=headers)
LOL_API_DATA=getAPI.json()
record_name=[]
record_opscore=[]
for i in range(0,10):
record_name.append(LOL_API_DATA["participantIdentities"][i]["player"]["summonerName"])
print(record_name)
ac_id=LOL_API_DATA["participantIdentities"][i]["player"]["accountId"]
record_opscore.append(check_score.op_score(ac_id))
print(record_opscore)
return record_name,record_opscore
for j in range(0,10):
print(game_result(j))
lst1=[]
lst2=[]
lst1,lst2=match_user_name_and_opscore(j)
print(lst1)
print(lst2)