dotnet
dotnet copied to clipboard
.NET Community Toolkit is a collection of helpers and APIs that work for all .NET developers and are agnostic of any specific UI platform. The toolkit is maintained and published by Microsoft, and par...
### Describe the bug Run application Add viewmodel class and save changes (triggering hot reload) eg ```csharp internal partial class MainViewModel : ObservableObject { } ``` Add properties and save...
### Describe the bug The following returns false even though both are empty strings ```cs if (!global::System.Collections.Generic.EqualityComparer.Default.Equals(myString, value)) ``` ### Regression _No response_ ### Steps to reproduce ```text 1. 2....
### Describe the problem I propose adding support for custom attributes on properties auto-generated by the [ObservableProperty] in the .NET Community Toolkit. Currently, properties auto-generated using [ObservableProperty] do not support...
### Describe the bug I have a contextmenu with one option "Move To" with some dynamically added sub-menuitems "destinations", which are create by binding the itemsource of the top menu...
Super minor typo fix **Closes #862** Removes an extra parenthesis from the message of the exception thrown by `Guard.ThrowHelper.ThrowArgumentNullExceptionForIsNotNull`. ## PR Checklist - [x] Created a feature/dev branch in your...
### Describe the bug There's a minor typo in `Guard.ThrowHelper.ThrowArgumentNullExceptionForIsNotNull`, an extra `)`. ### Regression _No response_ ### Steps to reproduce ```text 1. Paste the following code: object? foo =...
### Describe the bug With a very simple piece of code an exception is raised within the toolkit generated CanExecuteChanged method. ### Regression _No response_ ### Steps to reproduce ```text...
### Overview I have a particularly complex scoring UI that I'm trying to model which has a number of inputs (in the 15-20 input range per side, and there are...
### Describe the bug I had a working project using the that was not using the CommunityToolkit. It built and ran fine. I added the CommunityToolkit and now the build...
Setting 'CanExecute' doesn't change the status of Button controls when they are bound to RelayCommand. I recently upgraded from GalaSoft.MvvmLight.Command.RelayCommand where this was possible. However, using the RelayCommand in the...