using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Input; namespace Com.Piwigo.Wpf.Command { public static class PwgCmdProvider { public static ICommand _pwgCmdConnect; public static ICommand PwgCmdConnect { get { if (_pwgCmdConnect == null) { _pwgCmdConnect = new PwgCmdConnect(); } return _pwgCmdConnect; } } } }