DevExpress/DX_WPF
-
[DX_WPF] dxmvvm:Interaction.Behaviors vs dxmvvm:Interaction.TriggersDevExpress/DX_WPF 2023. 5. 16. 13:43
https://supportcenter.devexpress.com/ticket/details/t997484/dxmvvm-interaction-behaviors-vs-dxmvvm-interaction-triggers dxmvvm:Interaction.Behaviors vs dxmvvm:Interaction.Triggers You have yet to view any tickets. Your search criteria do not match any tickets. A server error occurred while processing your request. Please try again at a later time. supportcenter.devexpress.com
-
[DX_WPF] TreeListViewDevExpress/DX_WPF 2023. 5. 9. 16:30
ObservableCollection Nodes에 ParentKey 로 계층 구분 ChildNodesPath 방법 예제 링크 https://github.com/DevExpress-Examples/wpf-treelist-implement-childnodespath GitHub - DevExpress-Examples/wpf-treelist-implement-childnodespath: Bind the TreeListView to a collection whose objects have the Bind the TreeListView to a collection whose objects have the same field that contains child items. - GitHub - DevExpress-E..
-
[DX_WPF] DevExpress ImageDevExpress/DX_WPF 2023. 5. 4. 11:06
Folder Path Raster Images C:\Program Files\DevExpress 22.2\Components\Sources\Win\DevExpress.Images\Images Vector Images C:\Program Files\DevExpress 22.2\Components\Sources\Win\DevExpress.Images\SvgImages Image Path Ex) Window Title Bar Icon 추가 Icon="pack://application:,,,/PMLSStudio;component/Images/ToolIcon.ico" 실행 하는 어플리케이션의 PMLSStudio프로젝트 안의 Images폴더 안의 ToolIcon.ico Build Action : Resource로 ..
-
[DX_WPF] ThemesDevExpress/DX_WPF 2023. 5. 3. 09:56
아래 코드 있으면 자체제작 Thme 작동안함. //CompatibilitySettings.UseLightweightThemes = true; Theme 자체제작 toolDevExpress Theme Designer https://dlsenfl.tistory.com/entry/C-NuGet-Package-Explorer [C#] NuGet Package ExplorerNuGet Package Explorer Install https://apps.microsoft.com/detail/9WZDNCRDMDM3?hl=en-US&gl=US NuGet Package Explorer - Official app in the Microsoft Store IMPORTANT: This app works wi..
-
[DX_WPF] DiagramControl Container CollapseDevExpress/DX_WPF 2023. 4. 18. 16:29
필수추가 관련자료 링크 https://supportcenter.devexpress.com/ticket/details/t1125691/container-collapsebuttonposition-is-not-working container.CollapseButtonPosition is not working! You have yet to view any tickets. Your search criteria do not match any tickets. A server error occurred while processing your request. Please try again at a later time. supportcenter.devexpress.com https://supportcenter.devexp..
-
[DX_WPF] BarEditItem, BackgroundDevExpress/DX_WPF 2023. 3. 17. 13:51
private Color backGround = Colors.Red; public Color BackGround { get { return backGround; } set { SetProperty(ref backGround, value); } } # Property type을 Color가 아니라 String으로 할 경우 UI에 반영이 안되는 문제 The Color property is of the String data type, while PopupColorEdit works with the System.Windows.Media.Color data type. Change your MyColor's property type to Color or use a custom converter to convert ..