예제 #1
0
 /// <summary>
 /// Initializes a new instance of the BarStateChangedEventArgs class.
 /// </summary>
 /// <param name="bar"></param>
 /// <param name="affectedState"></param>
 /// <param name="contextInformation"></param>
 public BarStateChangedEventArgs(Bar bar, eBarStateChange affectedState, object contextInformation)
 {
     Bar = bar;
     AffectedState = affectedState;
     ContextInformation = contextInformation;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the BarStateChangedEventArgs class.
 /// </summary>
 /// <param name="bar"></param>
 /// <param name="affectedState"></param>
 public BarStateChangedEventArgs(Bar bar, eBarStateChange affectedState)
 {
     Bar = bar;
     AffectedState = affectedState;
 }