enumeration for the different transition types
- Namespace
- MahApps
.Metro .Controls - Interfaces
-
- IComparable
- ISpanFormattable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph BT
Type-->Base0["Enum"]
Base0-->Base1["ValueType"]
Base1-->Base2["object"]
Type-.->Interface0["IComparable"]
Type-.->Interface1["ISpanFormattable"]
Type-.->Interface2["IFormattable"]
Type-.->Interface3["IConvertible"]
Type["TransitionType"]
class Type type-node
Syntax
public enum TransitionType
Fields
| Name | Field Type | Constant Value | Summary |
|---|---|---|---|
| Custom | TransitionType | 8 |
Use a custom VisualState, the name must be set using CustomVisualStatesName property
static
|
| Default | TransitionType | 0 |
Use the VisualState DefaultTransition
static
|
| Down | TransitionType | 3 |
Use the VisualState DownTransition
static
|
| Left | TransitionType | 6 |
Use the VisualState LeftTransition
static
|
| LeftReplace | TransitionType | 7 |
Use the VisualState LeftReplaceTransition
static
|
| Normal | TransitionType | 1 |
Use the VisualState Normal
static
|
| Right | TransitionType | 4 |
Use the VisualState RightTransition
static
|
| RightReplace | TransitionType | 5 |
Use the VisualState RightReplaceTransition
static
|
| Up | TransitionType | 2 |
Use the VisualState UpTransition
static
|