C#/WPF
-
[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#을 사용하여 개발 환경을 설정하고 첫 번째 플랫폼 간 하이브..
-
-
[WPF] Plug-InC#/WPF 2025. 4. 1. 17:19
#DynamicModule#Modular 공통 모듈, 모듈 인터페이스 통해서 각 모듈 프로젝트에서View, ViewModel 등록하고 Bootstrapper에서 컨테이너에 등록 종속성 주입으로 받음 각 모듈에서 INavigateModule 상속받아서 구현해주고 공통 모듈의 템플릿에서 각 모듈의 NavigateViewCommand 실행 되도록 함. 메인 프로젝트 모듈에서공통 모듈의 템플릿 사용. https://medium.com/c-sharp-programming/introduction-to-a-plug-in-architecture-using-the-example-of-a-wpf-application-7f2e225b647a Introduction to a plug-in archit..
-
[WPF] Xmal svg imageC#/WPF 2025. 3. 25. 14:29
1. DevExpress 이용 https://docs.devexpress.com/WPF/120131/common-concepts/images/svg-images SVG Images | WPF Controls | DevExpress DocumentationThis topic describes how to display SVG images and change their palettes. You can use the SVG Icon Builder or any third-party vector graphics editor to create SVG images. Display SVG Images in XAML DevExpress components include properties of the ImageSourc..
-
[WPF] WPF UI Call from MFC (Feat. CLR)C#/WPF 2025. 3. 20. 14:25
Visual Studio 2022에 기본적으로 CLR 설치 안되어 있음. Installer 들어가서 C++/CLI Support 인스톨 해야 함. WPF Library (.Net Framework) WPF로 만든 공용 UI (.net Framework 4.xx~로 만들어야 함) CLR Class Library (.Net Framework) Managed 와 UnManaged Language를 연결해주는 다리 역할의 라이브러리 UI 라이브러리 WpfNFLibrary를 참조 Managed class (WPF용) DialogInterfaceWrapper DialogInterfaceWrapper.h DialogInterfaceWrapper.cpp UnManaged class (MFC용) NativeI..
-
[WPF] Project PublishC#/WPF 2025. 3. 19. 13:23
# Deployment mode Framework-dependent (의존성있는 패키지들만 포함 ex. DevExpress, other.dll) Self-contained ( 필요한 .net 관련 파일 전부 폴더에 떨굼): Self-contained deployment mode in .NET creates an executable that includes all the required .NET files to run an application. The app is isolated from other .NET apps and doesn't require the user to install .NET #Produce single file .exe 실행파일 프로젝트만 가능 ex) .dll 등 라이브러리 프..