Programing (프로그래밍)/WPF & C# (C Sharp) 썸네일형 리스트형 WPF & C# - 디자인 카카오톡 ( XAML / kakaoTalk_MemberList ) WPF & C# - 디자인 카카오톡 ( XAML / kakaoTalk_MemberList ) 더보기 WPF & C# - MySQL ( 접속 상태 확인 / 테이블 생성 / 값 입력 / MySqlConnection / CreateTable / InputValue ) WPF & C# - MySQL ( 접속 상태 확인 / 테이블 생성 / 값 입력 / MySqlConnection / CreateTable / InputValue ) Nuget 패키지 관리 > mysql 검색 및 설치 WPF & C# 에서 MYSQL 명령어를 사용하거나 접속하기위해서 반드시 필요하다. 요즘은 Nuget 다운로드가 가능하니 위의 그림처럼 쉽게 다운 받자. MainWindow.xaml.cs 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556MySqlConnection conn;string dbTable = "testTable"; // 접근할 테이블 설정string.. 더보기 WPF & C# - 오픈라이선스 ( 오픈소스 라이센스 / 오픈라이센스 / OpenSource License / CPOL / CPL / MIT / BSD / LGPL / GPL / CPOL / CDDL / Ms-PL ) - 펌 WPF & C# - 오픈라이선스 ( 오픈소스 라이센스 / 오픈라이센스 / OpenSource License / CPOL / CPL / MIT / BSD / LGPL / GPL / CPOL / CDDL / Ms-PL ) - 펌 [오픈라이센스 정리] MIT, 아파치, GPL 등등~아래 출처에 잘 정리되어 있는 내용들을 간단하게 표로 재구성~~ :) 출처 http://nowhunt.tistory.com/m/2원문은 http://www.codeproject.com/info/Licenses.aspx 오픈라이센스 이름 저작권 보호상용 소프트웨어에서 사용 가능 버그 패치 및 기능확장 제공의 의무 명시적 특허권 행사 가능 여부 사유 프로그램(소스 비공개 프로그램)에서 사용가능 여부 라이센스 전파 여부The Apache.. 더보기 WPF & C# - 예제 override ( 오버라이드 / 재정의 / 상속 / 다형성 ) WPF & C# - 예제 override ( 오버라이드 / 재정의 / 상속 / 다형성 ) MainWindow.xaml.cs 1234567891011121314151617181920212223242526272829303132333435363738public partial class MainWindow : Window{ public MainWindow() { InitializeComponent(); } // 예제 : https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/classes-and-structs/knowing-when-to-use-override-and-new-keywords private void btn_Click(object send.. 더보기 WPF & C# - Image 형변환 모음 ( Bitmap / BitmapImage / MemoryStream / FrameworkElement / Controls.Image / Byte[] ) WPF & C# - Image 형변환 모음 ( Bitmap / BitmapImage / MemoryStream / FrameworkElement / Controls.Image / Byte[] ) Bitmap > MemoryStream > BitmapImage using System.Drawing; 123456789101112Bitmap bitmap = new Bitmap(this.Width, this.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb); // Bitmap 담을 메모리스트림 준비MemoryStream ms = new MemoryStream(); // 초기화bitmap.Save(ms, System.Drawing.Imaging.ImageF.. 더보기 WPF & C# - 바인딩 모드별 코드 예제 ( Binding Mode / Default / OneTime / OneWay / OneWayTosource / TwoWay ) WPF & C# - 바인딩 모드별 코드 예제 ( Binding Mode / Default / OneTime / OneWay / OneWayTosource / TwoWay ) MainWindow.xaml.cs 123456789 Colored by Color Scriptercs MainWindow.xaml.cs 12345678910111213141516171819202122int i = 0;private void btn0_Click(object sender, RoutedEventArgs e){ i++; Binding binding = new Binding(); binding.Source = slider; // 슬라이더 binding.Path = new PropertyPath("Value"); // 슬라이더의.. 더보기 WPF & C# - 간단한 메모장 Memo ( OpenFileDialog / SaveFileDialog / StreamReader / StreamWriter / NotePad / 노트패드 ) WPF & C# - 간단한 메모장 Memo ( OpenFileDialog / SaveFileDialog / StreamReader / StreamWriter / NotePad / 노트패드 ) MainWindow.xaml MainWindow.xaml.cs public MainWindow() { InitializeComponent(); this.Title = "간단한 메모장"; } string file = ""; private async void Save(object sender, RoutedEventArgs e) { await SaveFile("Memo", txt.Text); } private async void Open(object sender, RoutedEventArgs e) { OpenFileDia.. 더보기 WPF & C# - Animation을 구현 3가지 방법 요약 ( DoubleAnimation / 더블애니메이션 / DispatcherTimer / 디스패쳐타이머 / 디스패처타이머 / CompositionTarget / Redering EventHandler / 랜더링 이벤트 핸들러 / 렌더링 ) WPF & C# - Animation을 구현 3가지 방법 요약 ( DoubleAnimation / 더블애니메이션 / DispatcherTimer / 디스패쳐타이머 / 디스패처타이머 / CompositionTarget / Redering EventHandler / 랜더링 이벤트 핸들러 / 렌더링 ) DoubleAnimation ( 더블애니메이션 ) 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 public MainWindow() { InitializeComponent().. 더보기 이전 1 ··· 9 10 11 12 13 14 15 ··· 30 다음