Does CompositeWPF support multiple windows / skins?

I am looking at using CompositeWPF ( http://www.codeplex.com/CompositeWPF ) - aka Prism to create the application I'm working on.

The application is not a traditional LOB application, however, it provides the user with data and status information.

I'm not sure that CompositeWPF supports more than one window or shell. I would like my application to notify users that a window with a borderless window appears on the bottom line of the screen (see MSN Notification), but still uses the idea of ​​submitting to a region, etc.

In addition to this, I would like to be able to respond to user actions (for example, double-click on something), hide the main window and present a progress dialog while working.

So is this possible?

+3
source share
2 answers

I have been using Composite wpf for several months and see no reason why you cannot do what you ask.

, , , "Composite wpf contrib project", "WindowRegionAdaptor", (. : http://www.codeplex.com/CompositeWPFContrib) , , . , .

,

eventAggregator.GetEvent<MainWindowShowEvent>().Publish(false);

ShellPresenter , :

eventAggregator.GetEvent<MainWindowShowEvent>().Subscribe(b => View.Show(b) );

WindowRegionAdaptor, , , , .. ( , , )

, -

+3
+3

Source: https://habr.com/ru/post/1699343/


All Articles