Koen Zwikstra
Koen Zwikstra
Confirmed. Looks like you're not the only one. As a workaround for now, the following suggestion seems to work -> https://github.com/RxReader/tencent_kit/issues/54#issuecomment-915978600 Modify the example/ios/Podfile as per the comment in the...
You probably exceed the memory limitations of the OS. I believe the sensitive parameter uses 1Gb of memory, not sure where Android likes that. Try a more moderate parameter set.
The approach I would recommend is using a view-model where you define your LinkGroups and Links in an ObservableCollection. Your ModernWindow view should bind to this view-model. When your app...
Consider the following viewmodel ``` c# public class ViewModel : NotifyPropertyChanged { private LinkGroupCollection groups = new LinkGroupCollection(); public LinkGroupCollection Groups { get { return this.groups; } } public void...
Not sure I fully understand the issue. Care to share some source code?
What version of Visual Studio are you using? Also, do you have an extension like Resharper installed?
Not sure what the problem is, your code looks fine. You might want to reference the MUI source project directly (instead of the nuget package) to debug the exception in...
Interesting. You are saying that the app does run, and clicking the link works fine? What version of WPF are you using?
I can't seem to reproduce the issue, targetting .NET 4.5. You mention WPF version 3.0. This version is not supported by MUI, you'll need at least .NET 4 or higher.
As long as your project targets .NET 4.5, you should be good. Still not sure what might be causing this issue. I've labelled it as a bug.