Descry, data and information visualization

Can't wait to use it in future projects!
For demo, please check out these four screen casts:
Screen cast 1 of 4 -
Creating a shell and modules
Screen cast 2 of 4 -
Visual Composition
Screen cast 3 of 4 -
Implementing views and services
Screen cast 4 of 4 -
Decoupled Communication
Hi guys - I am trying to watch the video in high quality (with the normal quality ones, you can't read any code), but the links don't work. Could this be fixed? Thank!
Hi All,
I am trying to make Shell as UserControl in WPF Composite application. I Started by modifying the Quickstart app: "Quickstarts\UI Composition\ViewDiscovery". I made "UIComposition.Desktop.csproj" a UserControl class library with Shell.xaml as UserControl. Created another WPFApplication to host the Shell. Added the following code in App.xaml.cs:
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
Bootstrapper bootStrapper = new Bootstrapper();
bootStrapper.Run();
// Get ShellContainer from IOC
IUnityContainer container = bootStrapper.Container;
var shellElement = container.Resolve<Shell>();
ShellContainer win = new ShellContainer();
// Add the ShellContainer UserControl to the main window
win.mygrid.Children.Add(shellElement);
win.Show();
}
The form shows up with the shell but when I click on the employee it doesn't show the details view. Please help!!! If any body has tried this.
Thanks & Regards,
Vishal.