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

Last change on this file since 7150 was 7150, checked in by bayral, 14 years ago

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File size: 570 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 sealed 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.