New Post: Show Multiple non-Modal dialogs at once
Hi, That is right, when defining a view to be used in the PopupWindowAction, you are passing an instance of that view in XAML, and that instance is reused each time the InteractionRequest is raised....
View ArticleNew Post: Prism 4.5 and Unity 3.0
Here is some ILDASM magic that worked for me:http://stackoverflow.com/questions/16313287/error-with-unity-framework-in-net-wpf1)"C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\x64\ildasm.exe"...
View ArticleNew Post: Show Multiple non-Modal dialogs at once
Thanks for the response. I had thought about a way to use service location to instantiate the view, but I was unsure where to implement it. I will have to look into the Markup Extension a little more....
View ArticleCommented Issue: Unity not compatible with UnityExtensions [10110]
Please see https://compositewpf.codeplex.com/discussions/443219Microsoft.Practices.Prism.UnityExtensions is not compatible with newly (officially) released Unity 3.0(1304.0)Seems like Unity is signed...
View ArticleNew Post: DelegateCommandBase & Proactive security
Hi, I want to be able to disable my buttons/menuitems in case the server (through AzMan) does not authorize the corresponding action. To achieve that the client (at startup) receives a list of allowed...
View ArticleNew Post: Register module from "Executable" instead of Library
Hello, I have a project with 2 module libraries ModuleALibrary and ModuleBLibrary using a IUnityContainer to register types. My Main project uses a Bootstrapper to initialize my...
View ArticleNew Post: Application with more than one Shell or Popup Windows with regions...
Perfect. Thank you very much
View ArticleNew Post: Prism/MEF + AvalonDock 2
Hi, I'm trying to build Visual Studio like interface for my LOB application which is based on Prism 4 and MEF. so i used the following region adapters as per sample called Central :...
View ArticleNew Post: Prism/MEF + AvalonDock 2
protected override RegionAdapterMappings ConfigureRegionAdapterMappings() { base.ConfigureRegionAdapterMappings(); var regionAdapterMappings =...
View ArticleNew Post: Prism 4.5 and Unity 3.0
Thank you I will try to work with MEF instead of Unity (after all it is now part of .Net framework). Anyway I hope that Prism or Unity (don't know which one is wrong actually) will be matched soon.
View ArticleNew Post: DelegateCommandBase & Proactive security
Hi, Based on my understanding, the code you provided seems to be correct. I believe you are in the right track with your approach. Regards, Federico Martinez http://blogs.southworks.net/fmartinez
View ArticleNew Post: Register module from "Executable" instead of Library
Hi, Based on my understanding, adding an .exe assembly file to the configuration file is the same as with other modules you added, but instead of ".dll" extension, you will use ".exe" extension in the...
View ArticleNew Post: Prism/MEF + AvalonDock 2
Hi jivara, It seems that the exception message was not posted. Please, edit the post to include it so that we can help you with it. Also, it would be helpful if you could also provide us a description...
View ArticleNew Post: Architecture in designing Login Page and the other screens using...
Hi, we have a requirement to create a WPF prism MVVM app using unity 3.0 . User will be presented a 'Login Screen' , where he enters username and password , after which click on 'OK" will check for...
View ArticleNew Post: Architecture in designing Login Page and the other screens using...
Hi, Based on my understanding of your scenario, I believe that your application could be designed using the following approach. Take into account that I won't give details on how to initialize your...
View ArticleNew Post: Application with more than one Shell or Popup Windows with regions...
Just another point. Damian article creates the Shell on the CreateShell of the Bootstrapper. I Will need to create the Shell on Demand, probably asnwering to a DelegateCommand, from a button or Menu....
View ArticleNew Post: Application with more than one Shell or Popup Windows with regions...
I have an IDialogService that is responsible for showing my dialogs/popups. The implementation of the service creates a scoped region and uses the RequestNavigate method to navigate to the view in the...
View ArticleNew Post: Application with more than one Shell or Popup Windows with regions...
Brian, What I really need is to open another "main" window. The user can start a command and open as many Windows/Shells he wants, and show whaterver views he wants in the shells. The user will be able...
View ArticleNew Post: Application with more than one Shell or Popup Windows with regions...
Hi, Based on my understanding, you should be able to create a new Shell in your application at any time by following the same steps that the bootstrapper does to create the main Shell:Create a Shell...
View ArticleNew Post: How to activate an existing order details view in StockTraderRI ?
Background: With StockTraderRI demo application when you select an action in the PositionSummary view an OrderCompositeView is activated by the OrderController. The only information displayed on the...
View Article