Oddbjørn Bakke
Oddbjørn Bakke
Pull request #99
@joanbarros the PR itself does not fix anything like that, but adds a couple of "command" you optional can use as a workaround. The PR is so old so so...
@danielkatz Nice. This seems like a great solution, and actually quite similar to the PR. It has a interesting approach to solve the "sharelock" issue also (through the ExecuteSubmitAsync, CanExecuteSubmit),...
With async void, no one will wait for it to finish, as it's a "fire-and-forget" way of doing things. Therefor it might not be finished when the view is loaded....
@C0D3Name that code will cause a deadlock for 5 seconds in most cases, if executed on the UI thread _(depends on the SynchronizationContext)_. @rid00z that code is really nice, and...
What about: ``` var navigationService = FreshIOC.Container.Resolve(CurrentNavigationServiceName) as NavigationPage; navigationService.Navigation.PopToRootAsync() ``` If you still got the problem, then this would probably be a Xamarin.Forms bug. You might try something like:...
I have started playing around with the `Elgato Plugin for StreamDeck access` to make a plugin for Loupedeck, using the official Loupedeck SDK. This approach seems to work, however with...
I have been developing some Touch Portal plugins, but not StreamDeck yet _(do have a StreamDeck though)_. The SDKs should be quite similar. Either the plugin needs to connect to...
This one is interesting. It seems to work if I skip the base call: ``` csharp if(e.PropertyName != nameof(VisualElement.BackgroundColor)) base.OnElementPropertyChanged(sender, e); ```
I checked the Xamarin.Forms sourcecode. https://github.com/xamarin/Xamarin.Forms/blob/ab0daa194734be0e45d8582e9254c447b464b27f/Xamarin.Forms.Platform.Android/VisualElementRenderer.cs Here you can se the problem: ``` csharp protected virtual void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e) { if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName) UpdateBackgroundColor(); else if (e.PropertyName...