Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t2wain/wpfcore
A reference implementation of a data-centric WPF application
https://github.com/t2wain/wpfcore
wpf wpf-application
Last synced: about 11 hours ago
JSON representation
A reference implementation of a data-centric WPF application
- Host: GitHub
- URL: https://github.com/t2wain/wpfcore
- Owner: t2wain
- Created: 2024-05-29T22:51:12.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-07-30T18:16:36.000Z (7 months ago)
- Last Synced: 2024-07-30T22:38:34.862Z (7 months ago)
- Topics: wpf, wpf-application
- Language: C#
- Homepage:
- Size: 276 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## WPF Application
This is a reference implementation of a data-centric WPF application. Some class libraries are intended for use in a new project. While others are for reference only since they display specific set of sample data. The sample features and data are based on the Hexagon Smart Electrical application. However, there is no business logic implemented in the application.
This demo application only uses out-of-the-box Microsoft dotNet libraries. For MVVM data binding support, this application uses the CommunityToolkit.MVVM library.
*1. Tree view hierarchical navigation*
![Load List Worksheet](./Hierarchial%20Navigation.png)
*2. Databound menu*
![Load List Worksheet](./Databound%20Menu.png)
*3. Datagrid report*
![Load List Worksheet](./Muliple%20DataGrid%20displayed%20in%20Tab%20View.png)
*4. Set report filter*
![Load List Worksheet](./Set%20Report%20Filter.png)
*5. Report configuration*
![Load List Worksheet](./Configuring%20Report.png)
## Custom Controls
Currently, the application is composed of 4 custom user controls:
- WPFCore.Menu.UMenu
- WPFCore.Shared.UI.SB.UStatusBar
- WPFCore.ElectIndex
- WPFCore.ElectGridPlease see the README document of each perspective project.
## Shared UI Library
- WPFCore.Shared.UI
## Data Access Libraries
- WPFCore.Data
- WPFCore.Data.OleDb
- WPFCore.Data.Report
- ADOLib.dll## Other Common Library for the App
- WPFCore.Common
- WPFCore.Common.UI## WPFCore.App
This application display data from an MS Access database. Database access is based on my ADOLib library.
## WPFCore.App2
This application display mocked data.
## Exploring WPF Features
- MVVM Data Bindings
- Custom RoutedUICommand
- Custom RoutedEvent
- Custom User Control