All the controls missing in WPF. Over 1 million downloads.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
817 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Samples.Infrastructure;
using Microsoft.Practices.Prism.Regions;
using Microsoft.Practices.Unity;
namespace Samples.Modules.ButtonSpinner
{
public class ButtonSpinnerModule : ModuleBase
{
public ButtonSpinnerModule(IUnityContainer container, IRegionManager regionManager)
: base(container, regionManager) { }
protected override void InitializeModule()
{
RegionManager.RegisterViewWithRegion(RegionNames.NavigationRegion, typeof(NavigationView));
}
protected override void RegisterViewsAndTypes()
{
Container.RegisterType(typeof(object), typeof(HomeView), typeof(HomeView).FullName);
}
}
}