public NavigationContext(object?fromId, object toId, NavigationAttributes attribute, INavigationParameter parameter)
 {
     FromId    = fromId;
     ToId      = toId;
     Attribute = attribute;
     Parameter = parameter;
 }
 public static bool IsRestore(this NavigationAttributes attributes)
 {
     return((attributes & NavigationAttributes.Restore) == NavigationAttributes.Restore);
 }
예제 #3
0
 public StrategyResult(object toId, NavigationAttributes attribute)
 {
     ToId      = toId;
     Attribute = attribute;
 }
 public static bool IsStacked(this NavigationAttributes attributes)
 {
     return((attributes & NavigationAttributes.Stacked) == NavigationAttributes.Stacked);
 }