Method Pop
Pop(StackViewItem, StackViewOperation)
Pops one or more items off the stack.
Declaration
public StackViewItem Pop(StackViewItem item, StackViewOperation operation = StackViewOperation.PopTransition)
Parameters
Type | Name | Description |
---|---|---|
StackViewItem | item | If the item argument is specified, all items down to (but not including) item will be popped. If item is null, all items down to (but not including) the first item is popped. |
StackViewOperation | operation | The type of transition to use during the process. |
Returns
Type | Description |
---|---|
StackViewItem | Returns the last item removed from the stack. |
Pop(StackViewOperation)
Pops one or more items off the stack. Only the current item is popped.
Declaration
public StackViewItem Pop(StackViewOperation operation = StackViewOperation.PopTransition)
Parameters
Type | Name | Description |
---|---|---|
StackViewOperation | operation | The type of transition to use during the process. |
Returns
Type | Description |
---|---|
StackViewItem | Returns the last item removed from the stack. |