NodeGroupBase Class
A common base class that adds nodes and resources to the parent node while active.
ActivatingAnimation ux
AddingAnimation ux
Android ux
BlockInputWhileNavigating uno
Clicked ux
Triggers when a pointer is clicked on a Visual.
Completed ux
ContainingText ux
DEPRECATED: Use WhileContainsText instead
DarkTheme uno
Deactivated ux
DeactivatingAnimation ux
DefaultTrigger uno
Deselected ux
Fired when the Selectable is removed from the Selection.
DoubleClicked ux
Triggers when a pointer is double-clicked on a Visual.
DoubleTapped ux
Triggers when a pointer is double-tapped on a Visual.
DragEnded ux
a Trigger that pulse when drag has been ended by Draggable Element
DragStarted ux
a Trigger that pulse when drag has been started by Draggable Element
Dropped ux
a Trigger that pulse when draggable element has been dropped to the target or target element has received draggable element
EdgeSwipeAnimation ux
DEPRECATED: Use SwipeGesture
with EdgeNavigator
instead
EnteredForceField ux
EnterHorizontal uno
EnteringAnimation ux
EnterVertical uno
ExitedForceField ux
ExitHorizontal uno
ExitingAnimation ux
ExitVertical uno
FallbackTheme uno
HoldPress ux
Triggers when a pointer is pressed on a Visual.
InForceFieldAnimation ux
InteractionCompleted ux
iOS ux
LayoutAnimation ux
LightTheme uno
LongPressed ux
NavEnterHorizontal uno
NavExitHorizontal uno
NavigatorSwipe ux
NavRemoveHorizontal uno
NodeGroup ux
Allows creating a class that contains several nodes and resources that are added directly to their Parent, as though included directly.
<NodeGroup ux:Class="GridLine">
<float4 ux:Property="Color"/>
<string ux:Property="Title"/>
<string ux:Property="Emoji"/> <a href="../fuse/nodegroup.html" class="table-of-contents-item-has-more" title="There is more information available for this entry"><i class="fa fa-ellipsis-h"></i></a>
OnBackButton ux
OnKeyPress ux
OnUserEvent ux
Triggers when a UserEvent is raised.
PageBeginLoading ux
Triggers when a WebView begins loading a page
PageLoaded ux
Triggers when a WebView finishes loading a page
PageWhileNavigatingFreeze uno
PhotoCaptured ux
PhotoLoaded ux
Pressed ux
ProgressAnimation ux
Triggers when a Slider or other compatible control changes its value.
PullToReload ux
RangeAnimation ux
Released ux
Triggers when a pointer is released on a Visual.
RemovingAnimation ux
Scrolled ux
ScrollingAnimation ux
Select ux
Deprecated (< 2017-01-01)
Selected ux
Fired when the Selectable is assed to the Selection.
State ux
A Trigger that is managed by a StateGroup.
StickingAnimation uno
StickyHeaderAnimation uno
Animation that progresses as a StickyHeader begins sticking, within to a given distance.
SupportBiometric ux
SwipeActionConfirmed uno
Swiped ux
SwipingAnimation ux
Tapped ux
Triggers when a pointer is tapped on a Visual.
TextInputActionTriggered ux
ThemeBase uno
Timeline ux
Transition ux
WhileActive ux
WhileBusy ux
WhileCanGoBack ux
WhileCanGoForward ux
WhileCompleted ux
Active while the Video is completed.
WhileContainsText ux
WhileCount ux
WhileDisabled ux
Active while the IsEnabled
property of its containing element is False
.
WhileDragging ux
Active while the element is being dragged.
WhileDraggingOver ux
WhileDroppingBy ux
WhileEmpty ux
WhileEnabled ux
WhileFailed ux
WhileFalse ux
WhileFloat ux
Active when the float
Value
fulfills some criteria.
WhileFocused ux
Active whenever its containing element is in focus.
WhileFocusWithin ux
Active whenever a child of its containing element is in focus.
WhileHovering ux
WhileInactive ux
WhileInEnterState ux
WhileInExitState ux
WhileInteracting ux
WhileKeyboardVisible ux
Active when on-screen controls are visible, such as the keyboard. This excludes the fixed controls, such as navigation and home button, on some devices.
WhileLoading ux
WhileNavigating ux
WhileNotEmpty ux
WhileNotFocused ux
WhilePageActive ux
WhilePageLoading ux
A trigger that is active while its parent WebView is loading.
WhilePaused ux
Active while the Video is paused.
WhilePlaying ux
Active while the Video is playing.
WhilePressed ux
WhileScrollable ux
Active when a ScrollView can be scrolled.
WhileScrolled ux
Is active while the ScrollView is scrolled within a given region.
WhileScrollSnapping ux
Active while an element is positioned within the snapping area.
<ScrollView LayoutMode="PreserveVisual">
<StackPanel>
<Each Count="100" Reuse="Frame" >
<Panel ux:Name="panel" Color="#AAA">
<Text ux:Name="text" Value="Data-{= index() }"/> <a href="../fuse/triggers/whilescrollsnapping.html" class="table-of-contents-item-has-more" title="There is more information available for this entry"><i class="fa fa-ellipsis-h"></i></a>
WhileSelected ux
This trigger is active while the Selectable is currently selected in the Selection
WhileString ux
Activate when the condition on the string value is true
WhileSwipeActive ux
Active whenever an Active-type SwipeGesture has been swiped to the active state.
WhileSwiping ux
WhileTrue ux
WhileVisible ux
Active when the parent element is visible.
WhileVisibleInScrollView ux
Active while an element is positioned within the visible area of the ScrollView.
<ScrollView>
<StackPanel>
<Each Items="{images}">
<DockPanel Height="100">
<Image Url="{source}" MemoryPolicy="UnloadUnused" Dock="Left"
Visibility="Hidden" ux:Name="theImage"/>
<Text Value="{description}" TextWrapping="Wrap"/> <a href="../fuse/triggers/whilevisibleinscrollview.html" class="table-of-contents-item-has-more" title="There is more information available for this entry"><i class="fa fa-ellipsis-h"></i></a>
WhileWindowLandscape ux
WhileWindowPortrait ux
WhileWindowSize ux
With ux
Be aware there is no ordering between the Nodes, Resources, and Templates. These are each independent lists which have their own order.
Location
- Namespace
- Fuse
- Package
- Fuse.Nodes 2.9.1
Interface of NodeGroupBase
FindTemplate(string) : Template uno
Nodes : IList of Node ux
Nodes to add to the Parent when this trigger is any non-deactivated state (Progress > 0)
OnNodeAdded(Node) uno
OnNodeRemoved(Node) uno
Resources : IList of Resource ux
Templates : IList of Template ux
Inherited from Node
Add(Binding) uno
Bindings : IList of Binding ux
The list of bindings belonging to this node.
ContextParent : Node uno
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.
FindByType<T> : T uno
FindNodeByName(Selector, Predicate<Node> (Node)) : Node uno
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.
GetNearestAncestorOfType<T> : T uno
Insert(int, Binding) uno
IsRootingCompleted : bool uno
Whether rooting for this node is completed. Returns false if unrooting has started.
IsRootingStarted : bool uno
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.
Name : Selector ux
Run-time name of the node. This property is automatically set using the ux:Name attribute.
NextSibling<T> : T uno
Returns the next sibling node of the given type.
OnDataChanged(string, object) uno
OnRooted uno
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.
OnUnrooted uno
Parent : Visual uno
The parent Visual of this node. Will return null if the node is not rooted.
PreviousSibling<T> : T uno
Returns the next sibling node of the given type.
Properties : Properties uno
A linked list holding data for extrinsic properties.
Remove(Binding) : bool uno
SoftDispose uno
SourceFileName : string ux
hide
SourceLineNumber : int ux
hide
SubtreeToString : string uno
SubtreeToString(StringBuilder, int) uno
TryGetResource(string, Predicate<object> (object), object) : bool uno
VisitSubtree(Action<Node> (Node)) uno
Inherited from PropertyObject
AddPropertyListener(IPropertyListener) uno
OnPropertyChanged(Selector, IPropertyListener) uno
OnPropertyChanged(Selector) uno
RemovePropertyListener(IPropertyListener) uno
Inherited from object
Equals(object) : bool uno
GetHashCode : int uno
GetType : Type uno
ToString : string uno
Implemented Interfaces
IList<Binding> uno
IScriptObject uno
Interface for objects that can have a script engine representation
IProperties uno
ISourceLocation uno
hide