Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the RestoreAutoHideState class.
 /// </summary>
 /// <param name="child">Restore object to be chained.</param>
 /// <param name="state">State of content.</param>
 /// <param name="content">Reference to source content.</param>
 public RestoreAutoHideState(Restore child, State state, Content content)
     : base(child, state, content)
 {
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the RestoreContentState class.
 /// </summary>
 /// <param name="child">Restore object to be chained.</param>
 /// <param name="state">State of content.</param>
 /// <param name="content">Reference to source content.</param>
 public RestoreContentState(Restore child, State state, Content content)
     : base(child, content)
 {
     // Remember parameter
     _state = state;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the Restore class.
 /// </summary>
 /// <param name="child"></param>
 public Restore(Restore child)
 {
     // Remember parameter
     _child = child;
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the Restore class.
 /// </summary>
 public Restore()
 {
     // Default state
     _child = null;
 }