DevExpress
-
[DX_WPF] DXDynamicModuleDevExpress/DX_WPF 2024. 10. 14. 09:29
-- # 프로젝트 dll 간헐적으로 로드 되지 않는 현상 (app, etc ) 간헐적으로 dll 동적 로드가 안됨. 유독 특정 dll들( app, etc)debug모드보다 debug없이 실행 할 때 유독 심하게 발생. 잘 될때는 계속 잘 돼기도 하고그러다 한번씩 안 돼기도 하고반복적으로 됐다 안돼기도하고불규칙적. com 을 쓰는경우 관련 프로젝트 (Apps) 등 정적으로 모듈이 로드(시정 상이)되는 것으로 추정. 특정 폴더의 .dll 을 정적 참조 리스트에 있어도 전부 로드하는것으로 DXDynamicModule.dll 코드 수정. (로드 하면 아래 메소드 실행하게 됨.)
-
[DX_WPF] Notification Balloon TipDevExpress/DX_WPF 2024. 5. 3. 09:40
App Start할 때 추가DevExpress.Data.ShellHelper.TryCreateShortcut("DSM", "DSM Notify Service"); Xaml 에 서비스 추가커스텀서비스 필요하면 데이타 템플릿 추가 Xaml 서비스 ViewModel로 가져오기 결과 값 받아서 처리. void ProcessNotificationResult(NotificationResult result) Ex. NotificationResult.Activated 노티 클릭했을 때 반환되는 값. https://docs.devexpress.com/WPF/18138/mvvm-framework/services/predefined-set/notificationservice NotificationServic..
-
[DX_WPF] HamburgerMenuDevExpress/DX_WPF 2024. 4. 15. 15:43
Content에 넣어주고CompactOverlayStateThreshold="NaN" 하면필때 Layout 조정 적용 됨. StackPanel로도 가능 MVVM Support TemplateSelector 따로 빼서 ResourceDirectory에 넣기. https://docs.devexpress.com/WPF/119474/controls-and-libraries/windows-modern-ui/hamburger-menu/mvvm-support WPF Hamburger Menu: MVVM Support | WPF Controls | DevExpress DocumentationThe Hamburger Menu allows you to implement the MVVM desi..
-
[DX_WPF] DevExpress Default ThemeDevExpress/DX_WPF 2024. 3. 29. 15:40
DevExpress 기본 테마는 Office2019Colorful 고정 GetDefaultThemeName() 는 private이라 못 불러옴 public static void UpdateApplicationThemeName() { if (!CompatibilitySettings.UseLightweightThemes && ApplicationThemeHelper.UseLegacyDefaultTheme || ApplicationThemeHelper.IsWebApp || ApplicationThemeHelper.IsInDesignMode || !string.IsNullOrEmpty(ApplicationThemeHelper.ApplicationThemeName) && ApplicationThemeHelper...
-
[DX_WPF] DialogServiceDevExpress/DX_WPF 2024. 3. 27. 08:21
DevExpress View Select DataTemplate Example) DataTemplateSelector Class Resources 에 DataTemplateSelector 추가 x:key는 Resource에서만 추가 가능. DialogService 에 ViewTemplateSelector 연결. Window Sizefmf 내용(UserControl) View에 맞춤. View 에서 width, Height 설정. 해당(x:Name) DialogService Get https://docs.devexpress.com/WPF/17469/mvvm-framework/services/view-creation-mechanisms View Creation Mechanisms | WPF Controls ..
-
[DX_WPF] DevExpress ServiceDevExpress/DX_WPF 2024. 3. 21. 13:24
DiagramSaveLoadService.cs DiagramMonitorView.xaml DiagramMonitorViewModel.cs ViewModelBase 상속해야 GetService 부를 수 있음. 인터페이스 타입만 불러올 수 있음. https://docs.devexpress.com/WPF/16920/mvvm-framework/services/create-a-custom-service Create a Custom Service | WPF Controls | DevExpress Documentation This topic describes how to create a custom service if predefined services do not suit your requirements. Note..