Top Banner
Microsoft Windows Mobile Microsoft Windows Mobile (C#.NET 모바일 프로그래밍 정리) Dae-Ki Kang
20

Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

Jul 28, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

Microsoft W

indows Mobile

Microsoft W

indows Mobile

(C#.NET 모바일프로그래밍정리)

Dae-KiKang

Page 2: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

차례

•MessageBox.Show()

•TextBox, Label, Button

•CheckBox, RadioButton, ComboBox, ListBox

•CheckBox, RadioButton, ComboBox, ListBox

•DataGrid, ListView, TreeView, Timer, TrackBar

Page 3: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

MessageBox.Show()

private void button1_Click(…)

{

string str= “Hello, World”;

string str= “Hello, World”;

MessageBox.Show(str) ;

}

Page 4: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

TextBox컨트롤

Page 5: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

Label 컨트롤

Page 6: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

Button 컨트롤

Page 7: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

CheckBox컨트롤

Page 8: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

RadioButton컨트롤

Page 9: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

RadioButton컨트롤과

Panel 컨트롤

Page 10: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

RadioButton컨트롤과

Panel 컨트롤

this.panel1 = new System.Windows.Forms.Panel();

this.panel2 = new System.Windows.Forms.Panel();

this.radioButton1 = new System.Windows.Forms.RadioButton();

this.radioButton2 = new System.Windows.Forms.RadioButton();

this.radioButton3 = new System.Windows.Forms.RadioButton();

this.radioButton3 = new System.Windows.Forms.RadioButton();

this.radioButton4 = new System.Windows.Forms.RadioButton();

this.radioButton5 = new System.Windows.Forms.RadioButton();

this.radioButton6 = new System.Windows.Forms.RadioButton();

// panel1

this.panel1.Controls.Add(this.radioButton3);

this.panel1.Controls.Add(this.radioButton2);

this.panel1.Controls.Add(this.radioButton1);

// panel2

this.panel2.Controls.Add(this.radioButton6);

this.panel2.Controls.Add(this.radioButton5);

this.panel2.Controls.Add(this.radioButton4);

Page 11: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

ComboBox컨트롤

Page 12: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

ComboBox컨트롤

this.comboBox1 = new

System.Windows.Forms.ComboBox();

this.comboBox1.Items.Add("Menu 1");

this.comboBox1.Items.Add("Menu 1");

this.comboBox1.Items.Add("Menu 2");

this.comboBox1.Items.Add("Menu 3");

this.comboBox1.Items.Add("Menu 4");

this.comboBox1.Items.Add("Menu 5");

Page 13: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

ListBox컨트롤

Page 14: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

DataGrid컨트롤

Page 15: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

DataGrid컨트롤과

DataTable클래스

•DataGrid컨트롤객체를만들고

•DataTable클래스객체를만든후

•DataGrid컨트롤객체의DataSource에

연결

•DataGrid컨트롤객체의DataSource에

연결

•DataTabledt= new DataTable();

•datagrid1.DataSource = dt;

Page 16: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

ListView컨트롤

Page 17: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

TreeView컨트롤

Page 18: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

Timer 컨트롤

Page 19: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

TrackBar컨트롤

Page 20: Microsoft Windows Mobilekowon.dongseo.ac.kr/~dkkang/Mobile2009Spring/Ch04.pdf · 2015-09-14 · 차례 • MessageBox.Show() • TextBox, Label, Button • CheckBox, RadioButton,

게임개발을위한참고서적들

•Pocket PC Game Programming:Usingthe Windows

CE Game API ---조나단S. 하버(지

은이), 조재권(옮

긴이) | 민프레스(민

커뮤니케이션)

•Beginning .NetGame Programming in C# ---

•Beginning .NetGame Programming in C# ---

Alexander Santos Lobao, David Weller, Ellen Hatton

(지은이) | Apress

•Managed DirectX First Steps: Direct 3D Basics and

DirectX vs. GDI+

(http://www.aspfree.com/c/a/ASP.NET/Managed-

DirectX-First-Steps-Direct-3D-Basics-and-Direct-X-

vs-GDI/)