/// <summary>
 /// Intializes a new instance of <see cref="GraphicFocusChangedEventArgs"/>.
 /// </summary>
 /// <param name="focusedGraphic">The graphic that was focused. Can be <b>null</b> if there is no currently focused graphic.</param>
 /// <param name="unfocusedGraphic">The graphic that was previously focused. Can be <b>null</b> if there was previously no focused graphic.</param>
 internal GraphicFocusChangedEventArgs(IFocussableGraphic focusedGraphic, IFocussableGraphic unfocusedGraphic)
 {
     _focusedGraphic   = focusedGraphic;
     _unfocusedGraphic = unfocusedGraphic;
 }
Пример #2
0
		/// <summary>
		/// Intializes a new instance of <see cref="GraphicFocusChangedEventArgs"/>.
		/// </summary>
		/// <param name="focusedGraphic">The graphic that was focused. Can be <b>null</b> if there is no currently focused graphic.</param>
		/// <param name="unfocusedGraphic">The graphic that was previously focused. Can be <b>null</b> if there was previously no focused graphic.</param>
		internal GraphicFocusChangedEventArgs(IFocussableGraphic focusedGraphic, IFocussableGraphic unfocusedGraphic)
		{
			_focusedGraphic = focusedGraphic;
			_unfocusedGraphic = unfocusedGraphic;
		}