Skip to content

Instantly share code, notes, and snippets.

@anuviswan
anuviswan / UnityBootstrapper.cs
Created October 14, 2018 06:05
Bootstrapper for Caliburn.Micro with Unity as IoC
public class Bootstrapper : BootstrapperBase
{
private IUnityContainer _unityContainer;
#region Constructor
public Bootstrapper()
{
Initialize();
}
#endregion
@bobbychopra
bobbychopra / DelegateCommand.cs
Created June 8, 2012 12:59
WPF Delegate Command
using System;
using System.Windows.Input;
namespace MyNameSpace
{
/// <summary>
/// DelegateCommand borrowed from
/// http://www.wpftutorial.net/DelegateCommand.html
/// </summary>
public class DelegateCommand : ICommand