I'm totally new in Prism (Composite Wpf). I want to create messaging module for my application: invisible panel on the top of the main window which appears when I invoke ShowMessage(string message) (and disappears after 5 seconds, for instance).
What I've done:
- Create infrastructure project (contains only one interface
IUIMessagesService) Create module project:
Project contains user control - it's panel for the message (View)
Project contains
UIMessagesServiceclass, which implementsIUIMessagesServiceIn module class I did so:
public UIMessagesModule(IRegionManager regionManager, IUnityContainer container) { _regionManager = regionManager; _container = container; }
and
public void Initialize()
{
_regionManager.RegisterViewWithRegion("UIMessagesRegion", typeof(UIMessagesView));
_container.RegisterType<IUIMessagesService, UIMessagesService>(new ContainerControlledLifetimeManager());
}
- Create shell project (bootstrapper, shell view with region e.t.c)
Questions:
How can I change properties of my view in class
UIMessagesService(in this caseRenderTrasformto show panel)? May be I need define theese properties in view model? How to change view model properties?How to execute module methods
ShowMessagesfrom application?