Animation : StatusBarAnimation ux
The animation style used when hiding or showing the status bar
Configures the appearance of the status bar on iOS.
To configure the status bar on Android, see Android.StatusBarConfig.
To configure the status bar on iOS, place an iOS.StatusBarConfig
somewhere in your UX tree.
<App>
<iOS.StatusBarConfig Style="Light" Animation="Slide" IsVisible="True" />
<!-- The rest of our app goes here -->
</App>
However, we usually want to configure the status bar for Android as well. We'll add an additional Android.StatusBarConfig.
<iOS.StatusBarConfig Style="Light" Animation="Slide" IsVisible="True" />
<Android.StatusBarConfig Color="#0003" IsVisible="True" />
The animation style used when hiding or showing the status bar
Whether the status bar should be visible
Creates a new StatusBarConfig
The visual style of the status bar
The list of bindings belonging to this node.
The context parent is the semantic parent of this node. It is where non-UI structure should be resolved, like looking for the DataContext, a Navigation, or other semantic item.
Finds the first node with a given name that satisfies the given acceptor. The serach algorithm works as follows: Nodes in the subtree are matched first, then it matches the nodes in the subtrees ofthe ancestor nodes by turn all the way to the root. If no matching node is found, the function returns null.
Whether rooting for this node is completed. Returns false if unrooting has started.
Whether rooting of this node has started. Note that even if this property returns true, rooting may not yet be completed for the node. See also IsRootingCompleted.
Run-time name of the node. This property is automatically set using the ux:Name attribute.
Returns the next sibling node of the given type.
If you override OnRooted
you must call base.OnRooted()
first in your derived class. No other processing should happen first, otherwise you might end up in an undefined state.
The parent Visual of this node. Will return null if the node is not rooted.
Returns the next sibling node of the given type.
A linked list holding data for extrinsic properties.
hide
hide
Interface for objects that can have a script engine representation
hide