We are transitioning from Xamarin.Forms to .Net MAUI but our project uses Prism.Unity.Forms. We have a lot of code that basically uses the IContainer. ...
We are transitioning from Xamarin.Forms to .Net MAUI but our project uses Prism.Unity.Forms. We have a lot of code that basically uses the IContainer. ...
We have the following code in CreateMauiApp. We are trying to add a MauiContext object to the container so it is available in ViewModels via DI We ...
I want to pass the webview2 control on the page to the ViewModel after clicking the button. The following is part of the code for xaml: I want to p ...
In my App.xaml.cs file I register singleton for my class like below The problem comes when I first log in for example with English selected, go to ...
I'm new to ReactiveUI. I'm trying to combine PRISM.MVVM with ReactiveUI. In particular, I'd like to use PRISM for its navigation utilities and Reactiv ...
Please help. Is it possible to connect all the regions with PRISM? For example I have three regions and they have three Views. The first region has a ...
I am just starting to learn WPF using the PRISM library. Please help me to solve one question. How to bind a button using DelegateCommand? In the code ...
I am trying to create an application with using Prism Library. I need certain classes to be informed when a specific property changes, however in my c ...
I am trying to create an optimized Event Tracker for my Xamarin.forms prism application. I would like to know whether there is any method to find out ...
I'm currently facing a pretty strange behaviour I'm uncertain whether I do something wrong or not but here is the problem. I try to return a list asy ...
I currently have vs 2019 installed and I still haven't raised enough cash to purchase vs 2022. Please can I get a download link from an old source? I ...
I have a Xamarin Prism Forms app that contains web page which should get the users current location. The app already has the required "app" permission ...
So I have the following ViewModel: Thus I have an ICommand above, that upon executing, will trigger the TestEvent and OpenDetailViewEvent events, w ...
I'm working on a Xamarin forms app using Prism. I'm trying to manipulate(Sort, filter, etc..) and display grouped data using Dynamic data. I'm followi ...
I am creating my first wpf application MVVM using Prism. My applications looks like: MainScreen I have no problems with navigation using delagete com ...
This is a sample .xaml code that I have, I'm using DrawerHost Control from MaterialDesignInXamlToolkit RightDrawerViewModel will be set to be the D ...
I am using Prism, this is a chunk of .xaml code of the main window <mah:MetroWindow x:Class="ProjectName.Views.MainWindow" xmlns:mah="http ...
I am converting my Xamarin Forms Application to .NET MAUI.I need to inherit Prism.MVVM.BindableBase class in my solution Is Prism.Core(8.1.97) packag ...
I'm tring to get the mouse postion related to a wpf control (a Canvas in this case) using MVVM Framework with Prism Library. I already got a solution ...
I'm trying to create a middleware to ensure the user is admin, but when I print request.customer, the result is undefined. This is what I'm doing: ...