
[1]전화번호부 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace _32_PhoneBook2 { public partial class Form1 : Form { OleDbConnection conn = null; OleDbCommand comm = null; OleDbDataReader reader = null; s..

[1]전화번호부 구현 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace _32_PhoneBook2 { public partial class Form1 : Form { OleDbConnection conn = null; OleDbCommand comm = null; OleDbDataReader reader = null..

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace _33_phonebook { public partial class Form1 : Form { OleDbConnection conn = null; OleDbCommand comm = null; OleDbDataReader reader = null; string conn..

[1]윈도우 계산기 클론코딩 namespace _030_WindowsCalc { /// /// Interaction logic for MainWindow.xaml /// public partial class MainWindow : Window { private bool opFlag; private double saved; private string op; private bool afterCalc; private double memory; private bool memFlag; public MainWindow() { InitializeComponent(); btnMC.IsEnabled = false; btnMR.IsEnabled = false; } private void btn_Click(object se..

[1]WPF에 hello출력하기 Hello World! WPF에 helloworld를 출력하는 xaml코드이다. Hello World! 마크업언어의 특성을 활용해주었다. 꺽쇠괄호 안에 특성을 코딩해준다. 수평정렬을 센터로 수직정렬도 센터로 폰트사이즈와 foreground(글자색) background가 배경색이다. fontweight는 bold(굵게)로 설정해주었다. mousedown은 클릭 이벤트이다. 텍스트블록 클릭 시에 mousedownevent를 실행해준다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows..

[1]학점계산기2 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 _021_ScoreCal { public partial class Form1 : Form { TextBox[] titles; ComboBox[] crds; ComboBox[] grds; public Form1() { InitializeComponent(); } private void Form1..

[1]리스트박스 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 _20listbox { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { listBox2.Items.Add("..

[1] 체크박스 체크박스를 사용하여 폼을 구성하고 값을 받아 출력해보았다. 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 _17checkbox { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, E..

14번 팩토리얼 문제를 풀며 추가적으로 작성했던 피보나치 함수의 코드이다. [1].피보나치 수열의 n항까지의 합 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp3 { class Program { static void Main(string[] args) { Console.Write("정수 하나를 입력하세요: "); int n = int.Parse(Console.ReadLine()); Console.WriteLine("결과: {0}", Fibo(n)); } private static int Fibo(int n) {..

이번 수업부터 Windows Forms App(.net framework)를 본격적으로 사용하기 시작했다. 처음 만들어본 윈도우즈 앱은 [1].이름을 입력받아 인사하는 폼 띄우기 구성은 이름 : 이 작성되어있는 Label0과 현재는 빈칸인 TextBox와 text를 Click으로 설정해준 Button 그리고 중간에 Label2와 맨 밑에 Label1을 배치해주었다. 버튼을 눌렀을 때 나오는 이벤트에 대한 코드는 아래이다 ↓↓ using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; us..