전체 글 (1629) 썸네일형 리스트형 윈폼(winform) 회원가입, 트레이 아이콘 예제 윈폼(winform) 회원가입, 트레이 아이콘 예제using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms; namespace WindowsFormsTest{ public partial class 회원가입 : Form { public 회원가입() { InitializeComponent(); } private void 회원가입_Load(object sender, EventArgs e) { comboBoxJob.SelectedIndex = 0; } pri.. 윈폼(winform) TreeView, ListView 사용예제 윈폼(winform) TreeView, ListView 사용예제반드시 이미지 리스트를 통해서만 넣을수 있다. 트리뷰는 선택이 됐을때 안됐을때 이미지를 다르게 줄수 있다. 노드 속성을 많이 사용한다. 할아버지 레벨0 아버지 레벨1 형 레벨2 트리뷰가 Nodes라는 컬렉션으로 관리한다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Start { public partial class TreeView : Form .. 윈폼(winform) ModalModeless, Dialog, ProgressBar, Timer 사용예제 윈폼(winform) ModalModeless, Dialog, ProgressBar, Timer 사용예제윈폼에서 자식창을 뛰우는 방법은 2가지가 있다. : 모달 창 방식, 모달리스 Modal : 부모한테 포커스가 간다면 전에 상태 값이 사라지기 때문에 자식편집이 끝날때까지 부모에게 가지 못하게한다. 외동자식 MessageBox.Show와 같은형태 확인을 누르기전엔 절대 다른곳 접근 불가능, 메시지박스 처럼 사용 Modeless : 자식편집이 있는 상태에서도 부모창에 포커스가 가능하다. 하나이상의 자식을 가질수 있다. DialogResult 속성은 모달창에서만 사용하는 속성이다. using System; using System.Collections.Generic; using System.ComponentM.. Ancor, Dock, Spliter ToolStrip, NotifyIcon, StatusBar using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Test { public partial class NotifyIcon : Form { public NotifyIcon() { InitializeComponent(); } private void 종료ToolStripMenuItem_Click(object sender, EventArgs e) { Application.Exit(); } private void 아이콘감추.. ImageList, MenuStrip(니모닉, 단축키), ContextMenu 컨트롤에 이미지 넣기 //이미지리스트 // - 하나 이상의 이미지를 리스트화 시킨 컨트롤(이미지집합) // - 이미지리스트를 사용하는 컨트롤과 연계해서 사용 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Start { public partial class MenuStrip : Form { public MenuStrip() { InitializeComponent(); } private void 첫번째ToolSt.. Resource 폼의 resx파일에 등록한 리소스 : 지역 리소스이며 (해당폼안에서만 사용가능) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Start.Properties; namespace Start { public partial class Resource : Form { public Resource() { InitializeComponent(); } private void Resource_Load(object sender, E.. 스크롤바, TrackBar, 픽쳐박스 윈폼 : BMP 방식: 점+점 WPF : 벡터 방식: 점+점 = 선 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Start { public partial class ScrollBar : Form { private Label lb; public ScrollBar() { InitializeComponent(); lb = new Label(); } private void button1_Click(object se.. 이전 1 ··· 184 185 186 187 188 189 190 ··· 204 다음