public CommandBarContainerActivityInfo(HostLocation location) : base(location)
 {
 }
 public TabContainerActivityInfo(HostLocation location, bool isDefault = false) : base(location, isDefault)
 {
 }
 public CommandBarContainerActivityInfo(HostLocation location)
     : base(location)
 {
 }
 public ContainerActivityInfo(HostLocation location = HostLocation.Center, bool isDefault = false)
 {
     Location = location;
     IsDefault = isDefault;
 }
示例#5
0
 public DocumentActivityInfo(string title, HostLocation location = HostLocation.Center, bool isCloseable = false) : base(title, location, isCloseable)
 {
 }
示例#6
0
 public ContainerActivityInfo(HostLocation location = HostLocation.Center, bool isDefault = false)
 {
     Location  = location;
     IsDefault = isDefault;
 }
 public DockingContainerActivityInfo(HostLocation location = HostLocation.Center, bool isCloseable = false)
     : base(location, isCloseable)
 {
 }
 public DocumentActivityInfo(string title, HostLocation location = HostLocation.Center, bool isCloseable = false)
     : base(title, location, isCloseable)
 {
 }
 public DockingContainerActivityInfo(HostLocation location = HostLocation.Center, bool isCloseable = false) : base(location, isCloseable)
 {
 }
示例#10
0
 public ViewActivityInfo(string title, HostLocation location = HostLocation.Center, bool isCloseable = true)
 {
     Title       = title;
     Location    = location;
     IsCloseable = isCloseable;
 }
示例#11
0
 private static string GetRegionName(HostLocation location)
 {
     return(location + "Host");
 }
示例#12
0
 public void SetViewContainer <TView>(HostLocation location, TView view) where TView : DependencyObject
 {
     regionManager.AddToRegion(GetRegionName(location), view);
 }
 public TabContainerActivityInfo(HostLocation location, bool isDefault = false)
     : base(location, isDefault)
 {
 }
示例#14
0
 public void RegisterViewContainerService(HostLocation location, IViewContainerService viewContainerService)
 {
     services[location] = viewContainerService;
 }
示例#15
0
 public ViewActivityInfo(string title, HostLocation location = HostLocation.Center, bool isCloseable = true)
 {
     Title = title;
     Location = location;
     IsCloseable = isCloseable;
 }