Microsoft .NET/WPF
-
[WPF] hexColor to (Color or SolidColorBrush)Microsoft .NET/WPF 2021. 11. 24. 10:46
// Color Color color_1 = (Color)new BrushConverter().ConvertFrom("#CA5100"); //SolidColorBrush SolidColorBrush brush_1 = (SolidColorBrush)new BrushConverter().ConvertFrom("#CA5100"); //xamarin Xamarin.Essentials.ColorConverters.FromHex("#CA5100")
-
[WPF] 지역화 (다중 언어)Microsoft .NET/WPF 2020. 12. 7. 18:43
본 예제는 resource에 국가별 언어를 미리 등록해두고 설정(Language Culture)에 따라 표출되는 언어가 변경되도록 하는 예제입니다. Git - https://github.com/jeseok-Mun/WPF_Example_MultiLanguage 참고 PC 언어 코드 System.Globalization.CultureInfo.CurrentCulture 국가별 언어 코드(Language Culture) 더보기 Code Name af Afrikaans af-ZA Afrikaans (South Africa) ar Arabic ar-AE Arabic (U.A.E.) ar-BH Arabic (Bahrain) ar-DZ Arabic (Algeria) ar-EG Arabic (Egypt) ar-IQ Ar..
-
[WPF] LiveCharts.WPF를 이용한 차트 그리기 (In xaml / In code)Microsoft .NET/WPF 2020. 1. 7. 18:07
NuGet : LiveCharts.Wpf https://lvcharts.net/ Xaml Code using System.Collections.Generic; using System.Windows; using System.Windows.Media; namespace WPF_Chart { /// /// MainWindow.xaml에 대한 상호 작용 논리 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); //범례 위치 설정 chart.LegendLocation = LiveCharts.LegendLocation.Top; //세로 눈금 값 설정 chart.AxisY.Add(new LiveCharts..
-
[WPF] '_' 문자가 출력되지 않는 경우! (Underline, Underscore)Microsoft .NET/WPF 2019. 7. 3. 19:25
보통 Element에 Text형식으로 문자가 들어가게 되면 문제가 안 생기지만 Content형식으로 문자를 넣게 되면 '_' 문자가 정상적으로 출력되지 않는 경우가 있습니다. 그런 경우 '_'문자가 accessKey로 분류되어 처리되었을 확률이 높습니다. 이런 경우 '_' 문자를 "__"문자처럼 '_'를 하나 더 붙여주면 해결됩니다. _TEST 문자열은 accessKey로 분류되어 TEST로 출력되고 두번째 __TEST는 원하는 결과값인 _TEST로 정상적으로 출력됨.
-
[WPF] Timer ( DispatcherTimer )Microsoft .NET/WPF 2019. 7. 3. 13:02
Timer를 생성하고 1초 주기로 출력창에 시간을 출력하는 예제입니다. using System; using System.Windows; namespace WPF_EXAMPLE_Timer_DispatcherTimer_ { /// /// MainWindow.xaml에 대한 상호 작용 논리 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); #region Timer System.Windows.Threading.DispatcherTimer timer = new System.Windows.Threading.DispatcherTimer(); //호출 함수 설정 timer.Tick += timer_Tick..
-
[WPF] 1. 화면 구성 - WrapPanelMicrosoft .NET/WPF 2019. 2. 27. 00:40
WrapPanel은 기본적으로 Control이 좌측상단에서부터 순차적으로 출력되며 Control들의 크기가 WrapPanel의 크기를 초과하게 되면 줄바꿈하게 됩니다. WrapPanel의 방향을 지정하지 않는다면 Top,Left에서 Bottom,Right 방향으로 Control을 배치합니다. WrapPanel에서는 Orientation 속성으로 Content의 가로, 세로 방향을 지정할 수 있으며, 가로방향일 경우 FlowDirection 속성으로 Content의 시작 방향을 지정할 수 있습니다. 또한 WrapPanel의 크기가 변경될 경우 자식 Content의 위치가 변경될 수 있습니다.
-
[WPF] 1. 화면 구성 - StackPanelMicrosoft .NET/WPF 2019. 2. 27. 00:39
2019/02/25 - [Microsoft .NET/WPF] - [WPF] 1. 화면 구성 StackPanel은 Control이 한쪽 방향으로 순차적으로 표현되고자 할 때 사용됩니다. StackPanel의 방향을 지정하지 않는다면 Top에서 Bottom 방향으로 Control을 배치합니다. StackPanel에서는 Orientation 속성으로 Content의 가로, 세로 방향을 지정할 수 있으며, 가로방향일 경우 FlowDirection 속성으로 Content의 시작 방향을 지정할 수 있습니다. 2019/02/25 - [Microsoft .NET/WPF] - [WPF] 1. 화면 구성