File

projects/wms-framework/src/lib/models/controls/VisualStates.ts

Description

Class that represents the model of a VisualStateManager

Index

Methods

Methods

Static GoToState
GoToState(ctx: any, state: string, transitions?: boolean)

GoToState method

Parameters :
Name Type Optional
ctx any No
state string No
transitions boolean Yes
Returns : void
import { UIElement } from '../../basecomponentmodel/UIElement';

/**
 * Class that represents the model of a VisualStateGroup
 *
 * @export
 * @class VisualStateGroup
 * @extends {FrameworkElement}
 * @wType System.Windows.VisualStateGroup
 */ export class VisualStateGroup extends UIElement {}

/**
 * Class that represents the model of a VisualState
 *
 * @export
 * @class VisualState
 * @extends {FrameworkElement}
 * @wType System.Windows.VisualState
 */
export class VisualState extends UIElement {}

/**
 * Class that represents the model of a VisualStateManager
 *
 * @export
 * @class VisualStateManager
 * @extends {FrameworkElement}
 * @wType System.Windows.VisualStateManager
 */
export class VisualStateManager {
  /**
   * GoToState method
   * @param ctx
   * @param state
   * @param transitions
   * @wNoMap
   */
  public static GoToState(
    ctx: any,
    state: string,
    transitions?: boolean
  ): void {}
}

result-matching ""

    No results matching ""