コード例 #1
0
 public GreenshotServerAction(ICoreConfiguration coreConfiguration, MainForm mainForm, HotkeyHandler hotkeyHandler, [ImportMany] IEnumerable <IDestination> destinations)
 {
     _coreConfiguration = coreConfiguration;
     _mainForm          = mainForm;
     _hotkeyHandler     = hotkeyHandler;
     _destinations      = destinations;
 }
コード例 #2
0
ファイル: HotkeyHandler.cs プロジェクト: vituocgia/vietshot
 public HotkeyHandler(
     ICoreConfiguration coreConfiguration,
     IGreenshotLanguage greenshotLanguage,
     WindowHandle windowHandle)
 {
     _instance          = this;
     _coreConfiguration = coreConfiguration;
     _greenshotLanguage = greenshotLanguage;
     _windowHandle      = windowHandle;
 }
コード例 #3
0
 public GreenshotServerAction(
     ICoreConfiguration coreConfiguration,
     MainForm mainForm,
     HotkeyHandler hotkeyHandler,
     DestinationHolder destinationHolder)
 {
     _coreConfiguration = coreConfiguration;
     _mainForm          = mainForm;
     _hotkeyHandler     = hotkeyHandler;
     _destinationHolder = destinationHolder;
 }
コード例 #4
0
ファイル: HotkeyHandler.cs プロジェクト: Vistritium/greenshot
 public HotkeyHandler(ICoreConfiguration coreConfiguration, WindowHandle windowHandle)
 {
     _instance          = this;
     _coreConfiguration = coreConfiguration;
     _windowHandle      = windowHandle;
 }