Alexis Nowikowski
Alexis Nowikowski
> I am using to string conversion in canonical rounding. That could be the cause, I think we should take a look at commits between v5.0.6 and v5.0.7 because the...
I have the same issue on Caliburn.Micro v4.0.212. @nkreipke Have you managed to find a workaround to catch unhandled exceptions thrown in `OnActivateAsync`, `OnDeactivateAsync`, `OnInitializeAsync` and others?
@vb2ae I have an application for internal usage that doesn't require user-friendly exception handling - the app would just crash on Caliburn v3 - it's fine for me. For example...
Hi @zulimazuli The code above also fails with `ShouldBeSameAs`
A workaround to catch unhandled exceptions is to use the `Coroutine.Completed` event. ```c# public abstract class TypedBootstrapper : BootstrapperBase { protected override void Configure() { Coroutine.Completed += CoroutineOnCompleted; } private...
You need to bind `SelectedItems` and then call `SelectAll/UnselectAll` by clicking the `Select all/Unselect all` entry in the UI, then it will throw. See the PR I submitted that fixes...
Hi @XceedBoucherS, thanks for your reply. What do you mean `SelectedItemsOverride` and `SelectAll` are kind of opposite? My use case is that I have a `DataGrid` with filterable columns. Some...
Also I noticed this bug was not present in WpfToolkit v3.8.2, but I wanted to upgrade to v4.6.1 and I discovered this bug exists in v.4.6.1.