source: extensions/PiwigoLib/PiwigoWpf/Command/PwgCmdProvider.cs @ 7160

Last change on this file since 7160 was 7160, checked in by bayral, 13 years ago

Connection à partir de wpf

File size: 563 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Input;
6
7namespace Com.Piwigo.Wpf.Command
8{
9    public static class PwgCmdProvider
10    {
11        public static ICommand _pwgCmdConnect;
12        public static ICommand PwgCmdConnect
13        {
14            get
15            {
16                if (_pwgCmdConnect == null)
17                {
18                    _pwgCmdConnect = new PwgCmdConnect();
19                }
20                return _pwgCmdConnect;
21            }
22        }
23    }
24}
Note: See TracBrowser for help on using the repository browser.