Development/WPF(11)
-
[RPA] WPF CONTROL 접근
https://stackoverflow.com/questions/10496106/why-automationproperties-are-needed-in-wpf Why AutomationProperties are needed in WPF As per my understanding, AutomationProperties can be utilized to identify names of controls by UI Automation clients. I want to understand need to create separate set of automation properties, and... stackoverflow.com
2020.06.09 -
[MVVM] View Loading
http://blog.naver.com/PostView.nhn?blogId=vactorman&logNo=221014156372&parentCategoryNo=12&categoryNo=&viewDate=&isShowPopularPosts=true&from=search MVVM pattern for WPF - 골칫거리들 1. 포스팅에 앞서 주의 사항 몇 가지 공지. ※ 주의 1. 이 포스팅의 내용은 지극히 개인적인 내용을 담고 있음... blog.naver.com
2020.06.09 -
[Telerik] GridView row foregroud color
Xaml:
2020.06.02 -
[Error] UI Thread 충돌 방지
"다른 스레드가 이 개체를 소유하고 있어 호출한 스레드가 해당 개체에 액세스할 수 없습니다" UI Thread 충돌이 발생 할 경우 해결 방법 using System.Windows.Threading; Dispatcher.Invoke(DispatcherPriority.Normal, new Action(delegate { //Your Coding }));
2020.05.22 -
[FTP] 프린터출력 pdf -> ftp로 전송
try { PrintDialog printDialog = new PrintDialog(); // 프린트 다이얼로그 생성 printDialog.PrintTicket.PageOrientation = System.Printing.PageOrientation.Landscape; printDialog.PageRangeSelection = PageRangeSelection.AllPages; printDialog.SelectedPagesEnabled = true; printDialog.UserPageRangeEnabled = true; string return_value = string.Empty; if (Print_Queue == true) { Print_Queue = false; printDialog.MaxPag..
2020.05.22