GUI C C++ C# Python Java 투표하기 끝내기 코드작성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using ..
C#/Basics
GUI 코드 작성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namesp..
GUI Button1 Button2 Button3
GUI 코드 작성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namesp..
subject 클래스 함수를 하나 만들어준다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace F005_ScoreCalc { class Subject { public string Title { get; set; } public int Credit { get; set; } public string Grade { get; set; } public Subject() { } public Subject(string title, int credit) { this.Title = title; this.Credit = credit; } } } F..