C#/WPF
-
[WPF] ComboBox Enum DescriptionC#/WPF 2025. 6. 19. 12:03
EnumToCollectionConverter.cspublic static class EnumHelper{ public static string Description(this Enum value) { var attributes = value.GetType().GetField(value.ToString()).GetCustomAttributes(typeof(DescriptionAttribute), false); if (attributes.Any()) return (attributes.First() as DescriptionAttribute).Description; // If no description is found, the least we..
-
-
-
[WPF] MouseOver, ScaleStyleC#/WPF 2025. 5. 15. 09:30
https://github.com/DevExpress-Examples/wpf-create-a-fluent-design-using-appearance-options/blob/804cf8afca6e0ea703cfb3e927d45af47ccc664a/CS/FluentDesignTemplate/ViewResourceDictionary.xaml wpf-create-a-fluent-design-using-appearance-options/CS/FluentDesignTemplate/ViewResourceDictionary.xaml at 804cf8afca6e0ea703cfbThis example creates a view styled according to Fluent Design with DevExpress com..
-
[WPF] AnimationC#/WPF 2025. 4. 30. 17:08
https://learn.microsoft.com/ko-kr/dotnet/desktop/wpf/graphics-multimedia/animation-overview?view=netframeworkdesktop-4.8&viewFallbackFrom=netdesktop-9.0 애니메이션 개요 - WPF .NET FrameworkWindows Presentation Foundation(WPF)에서 극적인 화면 전환 또는 생생한 시각적 효과를 사용하여 매력적인 사용자 인터페이스를 더욱 멋지게 만듭니다.learn.microsoft.com https://www.youtube.com/watch?v=6E7DAH8VYHU&list=PLvA3V2O0S6Rhyt6KY1pZOl1mS0bdE3sFI&index=3
-
[WPF][Blazor] WPF Blazor 앱 빌드C#/WPF 2025. 4. 30. 15:53
https://learn.microsoft.com/ko-kr/aspnet/core/blazor/hybrid/tutorials/wpf?view=aspnetcore-9.0 WPF(Windows Presentation Foundation) Blazor 앱 빌드WPF(Windows Presentation Foundation) 앱을 단계별로 빌드합니다.learn.microsoft.com https://learn.microsoft.com/ko-kr/training/modules/build-blazor-hybrid/ Blazor 하이브리드 및 .NET MAUI를 사용하여 모바일 및 데스크톱 앱 빌드 - TrainingBlazor, .NET MAUI 및 C#을 사용하여 개발 환경을 설정하고 첫 번째 플랫폼 간 하이브..
-