Programing (프로그래밍)/WPF & C# (C Sharp) 썸네일형 리스트형 WPF & C# - 진수 진법변환 5가지 방법(Base Converter) / Convert / ToInt32 / 2진수 / 10진수 / 16진수 / n진수 / StringBuilder ) WPF & C# - 진수 진법변환 5가지 방법(Base Converter) / Convert / ToInt32 / 2진수 / 10진수 / 16진수 / n진수 / StringBuilder ) 관련링크WPF & C# - 진수변환(Base Converter) / Convert / ToInt32 / 2진수 / 10진수 / 16진수 / n진수 / 진법) MainWindow.xaml.cs 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697.. 더보기 WPF & C# - Runtime.CompilerServices / TraceMessage 로그 파일 만들기 ( Log ) WPF & C# - Runtime.CompilerServices / TraceMessage 로그 파일 만들기 ( Log ) 관련내용WPF & C# - 로그파일 만들기 ( LOG ) - http://insurang.tistory.com/218 MainWindow.xaml.cs using System.Runtime.CompilerServices;using System.IO; 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051int traceNum = 0; // Trace 체크번호static public void TraceMessage(int traceNum = 0, // Trace 체크번호 s.. 더보기 WPF & C# - 코드로 값 바인딩하기 ( code / Binding / Property ) WPF & C# - 코드로 값 바인딩하기 ( code / Binding / Property ) MainWindow.xaml.cs 12345Binding myBinding = new Binding();myBinding.Source = this;myBinding.Path = new PropertyPath("ActualHeight");myBinding.Mode = BindingMode.OneWay;btn2.SetBinding(HeightProperty, myBinding );cs 일단 바쁘니 예제는 다음에... ㅋ 더보기 WPF & C# - Process.Start 폴더 열기 / 파일 열기 ( FileOpen / FolderOpen ) WPF & C# - Process.Start 폴더 열기 / 파일 열기 ( FileOpen / FolderOpen ) MainWindow.xaml.cs 12string filePath = @"C:\Program Files";System.Diagnostics.Process.Start(filePath);cs 더보기 WPF & C# - 배열로 폴더 Path 이동하기 ( array / path / folder / Directory / 디렉토리 / DirectorySeparatorChar / Environment.CurrentDirectory ) WPF & C# - 배열로 폴더 Path 이동하기 ( array / path / folder / Directory / 디렉토리 / DirectorySeparatorChar / Environment.CurrentDirectory ) MainWindow.xaml 1234567Colored by Color Scriptercs MainWindow.xaml.cs 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081// 폴더 설정string basePath = Environment.CurrentD.. 더보기 WPF & C# - StringBuilder 사용법 (스트링빌더 / Append / Insert / Replace / Remove / ToString / Clear) WPF & C# - StringBuilder 사용법 (스트링빌더 / Append / Insert / Replace / Remove / ToString / Clear) MainWindow.xaml 12Colored by Color Scriptercs MainWindow.xaml.cs 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071lbl.Content = "StringBuilder 객체 생성" + "\n\n";StringBuilder stb = new StringBuilder("ABC");lbl.Content += st.. 더보기 WPF & C# - datepicker 날짜계산 ( 달력 ) WPF & C# - datepicker 날짜계산 ( 달력 ) MainWindow.xaml 1 2 3 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 private void dtp_SelectedDateChanged(object sender, SelectionChangedEventArgs e) { // 1번 날짜가 선택 시 if (dtp01.SelectedDate.HasValue) { dtp02.DisplayDateStart = dtp01.SelectedDate.Value; // datepicker02 에 시작날짜 선택 제한 } // 2번 날짜 선택 시 if (dtp02.SelectedDate.HasValue) {.. 더보기 WPF & C# - out VS ref 키워드 차이점 및 비교 WPF & C# - out VS ref 키워드 차이점 및 비교 01. ref는 값이 할당된 변수를 사용해야 함 out 키워드 ref 키워드 - 에러 ref 키워드 - 수정 ( 메서드 밖 y 에 값 할당) ref는 int y 의 값이 없다는 것을 알고 에러가 발생한다. 즉, 할당되지 않은 값은 넣는것 조차 불가능하다. 02. out는 할당된 변수에 값을 줘야 함 out 키워드 - 에러 out 키워드 - 수정 ( 메소드 내 y에 값 할당) ref 키워드 out는 메서드 안에서 int y 의 값이 할당되지 않으면 에러가 발생한다. 즉, 내부에서 다시 값이 할당되어야만 한다. 03. 같은점? out와 ref는 둘 다 주소를 가르킨다.즉, 해당 변수(y)의 값이 변하면 해당 메서드 밖에서도 같이 변경된다. 04... 더보기 이전 1 ··· 14 15 16 17 18 19 20 ··· 30 다음