본문 바로가기

Programing (프로그래밍)/WPF & C# (C Sharp)

WPF & C# - DataGrid 에 mdb 연결 ( db / connection / connect ) WPF & C# - DataGrid 에 mdb 연결 ( db / connection / connect ) 1. 데이터 소스에서 데이터 소스 구성 마법사를 클릭한다. 2. 데이터베이스를 선택한다. 3. 데이터 집합을 선택한다. 6. "예"를 누르면 된다. 7. 연결할 문자열을 저장한다. (자동적으로 생성된다.) 8. 데이터베이스 개체를 선택한다. (뷰 / View 를 제외하고 선택하면 된다.) 9.해당 프로젝터의 '참조'에서 마우스 우클릭 후 '참조추가'를 해준다. ( System.Configuration ) 10. 아래와 같이 코딩해준다. MainWindow.xaml 12cs MainWindow.xaml.cs 123456789101112131415private void btn_Click(object se.. 더보기
WPF & C# - 템플릿 내 오브젝트 선택하기 ( Template / object ) WPF & C# - 템플릿 내 오브젝트 선택하기 ( Template / object ) MainWindow.xaml 123456789 Colored by Color Scriptercs MainWindow.xaml.cs 12345private void btn_Click(object sender, RoutedEventArgs e){ CheckBox chk = (CheckBox)btn.Template.FindName("chk1", btn); chk.Content = chk.IsChecked == true ? "Check" : "unCheck";}Colored by Color Scriptercs 더보기
WPF & C# - foreach vs Join ( 속도 테스트 ) WPF & C# - foreach vs Join ( 속도 테스트 ) MainWindow.xam 1234 Colored by Color Scriptercs MainWindow.xaml.cs 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960string[] arrVal = new string[1000];private void Button_Click(object sender, RoutedEventArgs e){ // 입력 for (int i = 0; i 더보기
WPF & C# - 토글버튼 / 리핏버튼 ( ToggleButton / RepeatButton ) WPF & C# - 이미지버튼 / 토글버튼 / 리핏버튼 ( ImageButton / ToggleButton / RepeatButton ) MainWindow.xaml 12345678910111213141516171819202122232425262728293031 Colored by Color Scriptercs MainWindow.xaml.cs 123456789101112131415161718192021222324252627282930313233343536protected void toggleOnOffButton_Checked(object sender, RoutedEventArgs e){ toggleOnOffButton.Content = "On!";}protected void toggleOnOffButt.. 더보기
WPF & C# - Listbox, List<string> ( 리스트박스 / 추가 / 제거 / binding / 바인딩) WPF & C# - Listbox, List ( 리스트박스 / 추가 / 제거 / binding / 바인딩) MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Colored by Color Scripter cs MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 7.. 더보기
WPF & C# - List<string> 동적 배열 ( 리스트 / array / dictionary ) WPF & C# - List 동적 배열 ( 리스트 / array / dictionary ) MainWindow.xaml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Colored by Color Scripter cs MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 List list = new List(); private void chk_Click(object sender, RoutedEventArgs e) { CheckBox chk = sender as CheckBox; lbl.Content = ""; string str = chk.Content.ToString(); if.. 더보기
WPF & C# - 색상변환 / 브러쉬, 컬러 ( Brush <-> Color / SolidColorBrush / 색상 형변환) WPF & C# - 색상변환 / 브러쉬, 컬러 ( Brush Color / 색상 형변환) Brush to Color ( Bruch -> Color ) 12Brush brush = Brushes.Red;Color color = (brush as SolidColorBrush).Color;cs Color to Brush ( Color -> Bruch ) 12Color color = Colors.Red;Brush brush = new SolidColorBrush(color);cs 더보기
[자작] WPF & C# - TouchTotalCount ( 터치 수 확인 프로그램 ) -프로그램명 : TouchTotalCount -언어 : WPF -목적 : 터치 디바이스에서 터치 가능여부와 수를 확인하는데 있다. -기능 : 터치 카운트, 가능수 무제한 using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; 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 Sys.. 더보기