본문 바로가기

전체 글34

C# Winform | TabControl / Modern Design UI - #2 C# Winform | TabControl / Modern Design UI - #2 C# Winform | TabControl / Modern Design UI - #1 C# Winform | TabControl / Modern Design UI - #1 Sample Image Contol 구조도 - 상속관계 Control Add Control 구분을 위해 Sample과 색이 조금 다를수 있습니다. 1. Panel 추가 - 최상위 부모 Panel (Parent Panel) - Properties 설정 Name : Tab_Back Anch.. program-day.tistory.com 위 링크에서 Component 작업을 완료하신 후에 진행하세요. Form Load Event 전역 변수 선언과 TebCo.. 2020. 11. 4.
C# Winform | TabControl / Modern Design UI - #1 C# Winform | TabControl / Modern Design UI - #1 Sample Image Contol 구조도 - 상속관계 Control Add Control 구분을 위해 Sample과 색이 조금 다를수 있습니다. 1. Panel 추가 - 최상위 부모 Panel (Parent Panel) - Properties 설정 Name : Tab_Back Anchor : Top, Bottom, Left, Right BackColor : 17, 17, 17 Size : 798, 523 2. Panel 추가 - Menu Panel [1번] 최상위 Panel (Name : Tab_Back)에 자식으로 추가 - Properties 설정 Name : Tab_Menu_Back Anchor : Top, Lef.. 2020. 11. 2.
C# Winform | string NewLine 줄바꿈 C# Winform | string NewLine 줄바꿈 TEST CODE Environment.NewLine string str = "Line1" + Environment.NewLine + "Line2"; Console.WriteLine(str); cs output docs.microsoft.com/ko-kr/dotnet/api/system.environment?view=netcore-3.1 Environment 클래스 (System) 현재 환경 및 플랫폼에 대한 정보 및 조작 방법을 제공합니다.Provides information about, and means to manipulate, the current environment and platform. 이 클래스는 상속될 수 없습니다.This cla.. 2020. 10. 28.
C# Winform | WebView / Tradingview - Chart (widget) C# Winform | WebView / Tradingview - Chart (widget) 웹브라우저 이용하여 트레이딩뷰 차트 위젯 사용 Nuget 설치 1. Microsoft.Toolkit.Forms.UI.Controls.WebView 설치 2. 마이그레이션 다음과 같은 error 발생시 마이크레이션으로 해결 3. WebView 사용 webBrowser 1 2 webView1.Navigate("https://www.naver.com"); webBrowser1.Navigate("https://www.naver.com"); cs 4. TradingView - 로컬파일 TradingView 위젯 kr.tradingview.com/widget/advanced-chart/ 기술적 분석용 무료 파이낸셜 차트 위.. 2020. 10. 16.
C# Winform | Pie Chart | Angle, Label C# Winform | Pie Chart | Angle, Label Pie or Doughnut Sample Start 12시 시작 설정 Chart 속성(Properties) -> Series 설정 Series 설정 -> CustomProperties -> PieStartAngle 설정 270으로 설정시 첫번째 Pie Data가 12시 부터 시작. 일정이하 Label 표시 안함. 1. Chart Data 입력 decimal total = ;//List_ChartData의 전체 Total 합계 ChartPie.Series["SeriesName"].Points.Clear(); decimal per5 = total / 20; // 20으로 나누어 전체의 5% 구함 for (int i = 0; i List_Ch.. 2020. 9. 2.
C# Winform | Parse, Convert - System.FormatException C# Winform | Parse, Convert - System.FormatException System.FormatException - 입력 문자열의 형식이 잘못되었습니다. 1. 원인 scientific notation - 과학적 표기법 Test Code E- Parse, Convert Exception string data = "1.7521E-06"; decimal data_Convert = Convert.ToDecimal(data); decimal data_Parse = decimal.Parse(data); cs RESULT 해결방법 MSDN https://docs.microsoft.com/ko-kr/dotnet/api/system.globalization.numberstyles?view=netc.. 2020. 8. 31.