/// <summary>
 /// Instantiates a new <see cref="AdaptiveGradientStop"/>.
 /// </summary>
 /// <param name="Color">The Color of the stop.</param>
 /// <param name="Anchor">The location of the stop.</param>
 public AdaptiveGradientStop(Color Color, IAdaptiveGradientAnchor Anchor)
 {
     this.Color = Color;
     this.Anchor = Anchor;
 }
Esempio n. 2
0
 /// <summary>
 /// Instantiates a new <see cref="AdaptiveGradientStop"/>.
 /// </summary>
 /// <param name="Color">The Color of the stop.</param>
 /// <param name="Anchor">The location of the stop.</param>
 public AdaptiveGradientStop(Color Color, IAdaptiveGradientAnchor Anchor)
 {
     this.Color  = Color;
     this.Anchor = Anchor;
 }