Updated Wiki: Home
Welcome to the Prism CommunityAnnouncementsPrism grows up - .NET Blog. Prism will is now open source!Prism for WPF now uses the Apache 2.0 license. See associated blog post.Prism.Mvvm and...
View ArticleNew Post: Handling selected item in ListBox Region
Hi, I have a prism wpf application. In the shell I have defined ListBox as LeftPaneRegion. The views are added to this region using ViewExport Attribute e.g.[ViewExport(RegionName =LeftPaneRegion)]...
View ArticleNew Post: Handling selected item in ListBox Region
If driven from the module itself, should be able to just set the IsActive property of the view and raise the IsActiveChanged event.
View ArticleNew Post: Handling selected item in ListBox Region
Hi BrianNoyes, Thanks for the response. I tried setting isActive to true in view's InitializeComponent function. But changing the isActive to true does not change IsSelected property of listboxitem. I...
View ArticleCreated Unassigned: Source code is unviewable [10730]
The source shows as a sequence of black diamonds interspersed with letters and numbers as though the code page for the source code is non-standard. Essential, spaces and non-alphanumeric characters are...
View ArticleCreated Unassigned: Clone git repository requires VS elevation to...
Having cloned the repository, it presents itself as ReadOnly. Having remove that constraint I discover that the folders are a bunch of shortcuts that trigger a copy of visual studio to load, ostensible...
View ArticleNew Post: Region inside Mainregion
Hi List, i have as most of the users, left a NavigationRegion and then my MainRegion. In one of my Moduls i need a TabControl inside the MainRegion. This TabControl should host a Region as well, so i...
View ArticleNew Post: Handling selected item in ListBox Region
Hi Sharda, I apologize, I was remembering wrong. The region implementation will set the IsActive flag on a view that is activated by the user through the interactions of the container control, which...
View ArticleNew Post: Handling selected item in ListBox Region
On second thought, I'm not sure if that would be the best approach. One workaround at this point could also be to use PubSubEvents to notify the ViewModel for the parent region that a child view would...
View ArticleNew Post: Handling selected item in ListBox Region
Hi Brian, Thanks for the suggestion. Currently I think using RequestNavigate also this problem will arise. But I would have to try. Currently I have implemented one workaround. The ChildView is...
View ArticleNew Post: Handling selected item in ListBox Region
Actually I like your solution even better! Leverage the power of data binding for what it was intended for - synchronizing state of two things. Well done.
View ArticleNew Post: Move to github?
Announcement: http://blogs.msdn.com/b/dotnet/archive/2015/03/19/prism-grows-up.aspx GitHub: https://github.com/PrismLibrary/
View ArticleNew Post: Xamarin.Forms?
For those that stumble upon this post be sure to check out the new Prism for Xamarin.Forms Preview:http://brianlagunas.com/first-look-at-the-prism-for-xamarin-forms-preview/
View ArticleNew Post: Xamarin.Forms?
Man... If anything, I have to say I am very pleased with how much work Team Brian has put into getting XF support into Prism. I honestly didn't think it would ever happen... or be the typical EntLib...
View ArticleNew Post: RegionManager does not contain nested region issue
Hi, I have a wpf application using prism and mef. In my Shell I have define ModuleRegion. In moduleRegion, when I load ModuleA, ModuleAMainView is loaded. ModuleAMainView has nested region LeftRegion...
View ArticleNew Post: RegionManager does not contain nested region issue
I'm afraid you can't access the nested regions in OnNavigateTo, it is too early in the view lifecycle of the region. Regions are defined with an attached property and the implementation uses a...
View ArticleNew Post: Overlayed dialog in Prism 5.0
How can I achieve the following appearance for modal dialogs in a Prism 5.0 based WPF desktop application? Here is the screenshot from the Prism 5...
View ArticleNew Post: Overlayed dialog in Prism 5.0
It is possible to do with InteractionRequests, but with the current code base you would need to write your own custom behavior to do the presentation part as a windowless border and handle the...
View ArticleNew Post: RegionManager does not contain nested region issue
Hi BrianNoyes,"The way I typically deal with these kinds of things that are dependent on waiting for view load is to use a CallMethodAction behavior in the view to call a "Loaded" or "Initialized"...
View Article