So I'm using Prism v2 (CAL) in an app with four separate modules, loaded as tab controls. Works great so far. Quesiton(s): How do I have one grouped taskbar icon in Win7 for each tab, and how do I get 4 taskbar preview windows to display (one showing each tab control's contents, like in IE8)?
If it helps, this is how I'm loading my tab modules in the Bootstrapper:
protected override IModuleCatalog GetModuleCatalog()
{
ModuleCatalog catalog = new ModuleCatalog();
catalog.AddModule(typeof(Module1));
catalog.AddModule(typeof(Module2));
catalog.AddModule(typeof(MFLModule3));
catalog.AddModule(typeof(Module4));
return catalog;
}
I understand the basics of the WindowsAPICodePack (I think), but I don't know the best way to integrate that with Prism. Any insight is appreciated.