Inventory
Inventory copied to clipboard
New version of Microsoft Inventory sample, built on WinUI 3, using DDD and Clean Architecture approach
Hi, thank you for creating this repo, this is a great work. Could you provide a compiled exe in the release page so that some fresh bird like me can...
Create an example of using XAML Island in Win Forms app to show a "new" version of the app with new UI by integration some of the WinUI components into...
Examples of binding checkbox control to UI. I.e Is Active field on the products table.
Whereas the app should have a local dB and work offline, it would be great to demonstrate how to integrate and authentic with a Azure hosted database to pull products...
I'm trying to store events in the Warehouses table per product id. And all the events are inherited from `WarehouseEventBase`. But now it's impossible to have TPH (Table Per Hierarchy)...
I've noticed, that setting item might throw an error sometimes. Not sure, but it can be related to the theme changing.
Now `INavigationAware` interface looks like this: ```CSharp public interface INavigationAware { void OnNavigatedTo(object parameter); void OnNavigatedFrom(); } ```` Current implementation is not correct from the architecture point of view. It...
Issue #28 describes how to use [CommunityToolkit.Mvvm.Messaging](https://github.com/CommunityToolkit/dotnet) for ViewModels communication. The only one problem here, is every ViewModel which listens for a message, has to be manually activated: ```IsActive =...
[CommunityToolkit.Mvvm.Messaging](https://github.com/CommunityToolkit/dotnet) provides `IMessenger` interface, that allows us to set up Pub / Sub system for flexible ViewModels communication. How it can be useful? We have a `ProductsView` with `ProductsViewModel`, which...