protected ApplicationJumpListService(INativeJumpList nativeJumpList, IJumpActionsManager jumpActionsManager) {
     IconStorage = CreateDefaultIconStorage();
     jumpList = new ApplicationJumpList(this);
     Items = new ApplicationJumpItemCollectionInternal(this);
     if(InteractionHelper.IsInDesignMode(this)) return;
     this.nativeJumpList = nativeJumpList ?? currentNativeJumpList;
     this.jumpActionsManager = jumpActionsManager ?? JumpActionsManager.Current;
 }
Esempio n. 2
0
 protected ApplicationJumpListService(INativeJumpList nativeJumpList, IJumpActionsManager jumpActionsManager)
 {
     IconStorage = CreateDefaultIconStorage();
     jumpList    = new ApplicationJumpList(this);
     Items       = new ApplicationJumpItemCollectionInternal(this);
     if (InteractionHelper.IsInDesignMode(this))
     {
         return;
     }
     this.nativeJumpList     = nativeJumpList ?? currentNativeJumpList;
     this.jumpActionsManager = jumpActionsManager ?? JumpActionsManager.Current;
 }
 public TestApplicationJumpListService(INativeJumpList nativeJumpList, IJumpActionsManager jumpActionsManager) : base(nativeJumpList, jumpActionsManager)
 {
 }
 public TestApplicationJumpListService(INativeJumpList nativeJumpList, IJumpActionsManager jumpActionsManager) : base(nativeJumpList, jumpActionsManager) { }