본문 바로가기

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

WPF & C# - 웹페이지에서 JSONString 값 가져오기 ( JSON / PHP / WEB / JSON_UNESCAPED_UNICODE / Newtonsoft.Json ) WPF & C# - 웹페이지에서 JSONString 값 가져오기 ( JSON / PHP / WEB / JSON_UNESCAPED_UNICODE / Newtonsoft.Json ) Newtonsoft.Json 추가하기참조추가 > NuGet 패키지 관리 > 찾아보기 > Newtonsoft.Json > 설치 json.php PHP ( json string 생성하기 )123456Colored by Color Scriptercs 출력{"korean":"한글","english":"Hello"} MainWindow.xaml 1234 Colored by Color Scriptercs MainWindow.xaml.cs using System;using System.IO;using System.Net;using Syste.. 더보기
WPF & C# - File Open Copy Move Rename ( 파일 열기 / 복사하기/ 이동하기 / 이름변경하기 ) WPF & C# - File Open Copy Move Rename ( 파일 열기 / 복사하기/ 이동하기 / 이름변경하기 ) MainWindow.xaml.cs 123456789101112 Colored by Color Scriptercs MainWindow.xaml.cs 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970using Microsoft.Win32;using System.IO;using System.Windows; string file = ""; // 파일 Path // 파일열기private void btnOpe.. 더보기
WPF & C# - 마우스 커서 변경 ( Mouse Cursor / Cursors Change / Cursors.Arrow ) WPF & C# - 마우스 커서 변경 ( Mouse Cursor / Cursors Change / Cursors.Arrow ) MainWindow.xaml 123 Colored by Color Scriptercs MainWindow.xaml.cs 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556public MainWindow(){ InitializeComponent(); // 버튼 생성 for(int i = 0; i 더보기
WPF & C# - 실행파일명 확인하기 ( Environment.GetCommandLineArgs() ) WPF & C# - 실행파일명 확인하기 ( Environment.GetCommandLineArgs() ) MainWindow.xaml.cs 1234567891011private void Window_Loaded(object sender, RoutedEventArgs e){ lbl.Content = ""; if (args.Count() == 2) lbl.Content += args[1] + "\n"; // 실행 파일명 string[] args = Environment.GetCommandLineArgs(); foreach (string str in args) // 실행 파일이 다수인경우 { lbl.Content += str + "\n"; }}Colored by Color Scriptercs 더보기
[자작] WPF & C# - DavichSign ( 다비치안경원 / 갤럭시북 / 초성검색 ) [자작] WPF & C# - DavichSign ( 다비치안경원 / 갤럭시북 / 초성검색 ) [ 사용자모드 ] [ 관리자모드 ] - ( ㅋㅌㅍㅎㅋㅌㅍㅎ + 로고 클릭 ) 갤럭시북OS : 윈도우10 해상도 : 1920*1280 기능 : 초성검색 사인을 통한 출석체크 프로그램 이후 지문인식기와 연동을 위해서 중단된 프로젝트이다. 더보기
[자작] WPF & C# - 폴더트리를 StackPanel 로 구성 _ 슬라이드액션 첨가 [자작] WPF & C# - 폴더트리를 StackPanel 로 구성 _ 슬라이드액션 첨가 MainWindow.xaml 12345678910111213141516 Colored by Color Scriptercs MainWindow.xaml.cs 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123.. 더보기
[자작] WPF & C# - 폴더트리를 StackPanel 로 구성 [자작] WPF & C# - 폴더트리를 StackPanel 로 구성 MainWindow.xaml 1234567891011121314 Colored by Color Scriptercs MainWindow.xaml.cs 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384public MainWindow(){ InitializeComponent(); dirSearch(@".\폴더트리\");} int imageCount = 0; // 이미지 총 개수private void dirSea.. 더보기
WPF & C# - DNSLookUP ( 책 : C# 5.0 프로그래밍 실전 프로젝트 / Book / IPAddress / Contans / Replace ) WPF & C# - DNSLookUP ( 책 : C# 5.0 프로그래밍 실전 프로젝트 / Book / IPAddress / Contans / Replace ) MainWindow.xaml 12345678910 Colored by Color Scriptercs MainWindow.xaml.cs 12345678910111213141516171819202122232425262728private void btn_Click(object sender, RoutedEventArgs e){ string HostName = null; if (tbx.Text.Contains("://") == true) // 해당 문자열 포함여부 확인 { HostName = tbx.Text.Replace("http://", ""); // .. 더보기