File size: 1,346 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

using System;
using System.Collections.Generic;
using System.Security;
using System.Text;
using System.Windows;
using System.Windows.Input;

namespace Microsoft.Management.UI.Internal
{
    internal static class CommandHelper
    {
        internal static void ExecuteCommand(ICommand command, object parameter, IInputElement target)
        {
            RoutedCommand command2 = command as RoutedCommand;
            if (command2 != null)
            {
                if (command2.CanExecute(parameter, target))
                {
                    command2.Execute(parameter, target);
                }
            }
            else if (command.CanExecute(parameter))
            {
                command.Execute(parameter);
            }
        }

        internal static bool CanExecuteCommand(ICommand command, object parameter, IInputElement target)
        {
            if (command == null)
            {
                return false;
            }

            RoutedCommand command2 = command as RoutedCommand;

            if (command2 != null)
            {
                return command2.CanExecute(parameter, target);
            }
            else
            {
                return command.CanExecute(parameter);
            }
        }
    }
}