24 строки
806 B
C#
24 строки
806 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using Windows.Graphics.Effects;
|
|
|
|
namespace Microsoft.Toolkit.Uwp.UI.Media
|
|
{
|
|
/// <summary>
|
|
/// An <see langword="enum"/> used to modify the default placement of the input <see cref="IGraphicsEffectSource"/> instance in a blend operation
|
|
/// </summary>
|
|
public enum Placement
|
|
{
|
|
/// <summary>
|
|
/// The instance used to call the blend method is placed on top of the other
|
|
/// </summary>
|
|
Foreground,
|
|
|
|
/// <summary>
|
|
/// The instance used to call the blend method is placed behind the other
|
|
/// </summary>
|
|
Background
|
|
}
|
|
} |