Class ApplicationTransitionManager

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

This ApplicationTransitionManager class is a class to control transition motion of application.

C#
Copy
public class ApplicationTransitionManager : IDisposable
Inheritance
ApplicationTransitionManager

Properties

View Source

AppearingTransition

Transition properties for the transition of Window during this application call new application.

Declaration
C#
Copy
public TransitionBase AppearingTransition { get; set; }
Property Value
Type Description
TransitionBase
View Source

ApplicationFrameType

Enable FrameBroker(Caller) or FrameProvider(Callee)

Declaration
C#
Copy
public FrameType? ApplicationFrameType { get; set; }
Property Value
Type Description
Nullable<FrameType>
View Source

DisappearingTransition

Transition properties for the transition of Window during new application is exited.

Declaration
C#
Copy
public TransitionBase DisappearingTransition { get; set; }
Property Value
Type Description
TransitionBase
View Source

Instance

ApplicationTransitionManager Instance for singleton

Declaration
C#
Copy
public static ApplicationTransitionManager Instance { get; }
Property Value
Type Description
ApplicationTransitionManager
View Source

SourceView

Gets or sets SourceView, it is a view for seamless transition of application. If you set SourceView, SourceView is changed to a screen of the application executing.

Declaration
C#
Copy
public View SourceView { get; set; }
Property Value
Type Description
View
View Source

TransitionWindow

Configures the transition window.

Declaration
C#
Copy
public Window TransitionWindow { get; set; }
Property Value
Type Description
Window

Methods

View Source

Dispose()

Dispose for IDisposable pattern

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(Boolean)

Hidden API (Inhouse API). Dispose.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing
View Source

LaunchRequestWithTransition(AppControl)

Launch an application using transition animation.

Declaration
C#
Copy
public void LaunchRequestWithTransition(AppControl appControl)
Parameters
Type Name Description
AppControl appControl
Privilege Level: public
Privilege: http://tizen.org/privilege/appmanager.launch

Events

View Source

FrameBrokerAnimationFinished

Emits the event when the animation is finished.

Declaration
C#
Copy
public event ApplicationTransitionManager.AnimationEventHandler FrameBrokerAnimationFinished
Event Type
Type Description
ApplicationTransitionManager.AnimationEventHandler
View Source

FrameBrokerAnimationInitialized

Emits the event when the animation is started.

Declaration
C#
Copy
public event ApplicationTransitionManager.AnimationEventHandler FrameBrokerAnimationInitialized
Event Type
Type Description
ApplicationTransitionManager.AnimationEventHandler
View Source

FrameProviderHidden

Occurs whenever the window is hidden on caller application.

Declaration
C#
Copy
public event EventHandler FrameProviderHidden
Event Type
Type Description
EventHandler
View Source

FrameProviderShown

Occurs whenever the window is shown on caller application.

Declaration
C#
Copy
public event EventHandler FrameProviderShown
Event Type
Type Description
EventHandler

Extension Methods