ICommandTrigger.cs 149 B

12345678910
  1. using System.Windows;
  2. namespace OpenSEMI.ClientBase.Command
  3. {
  4. public interface ICommandTrigger
  5. {
  6. void Initialize(FrameworkElement source);
  7. }
  8. }