CPF/CPF/CommandParameter.cs
2023-11-21 23:05:03 +08:00

34 lines
757 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace CPF
{
/// <summary>
/// 命令参数的数据
/// </summary>
public enum CommandParameter : byte
{
/// <summary>
/// 事件数据如果是属性的话则事件数据对象是CPFPropertyChangedEventArgs
/// </summary>
EventArgs,
/// <summary>
/// 事件发送者
/// </summary>
EventSender,
/// <summary>
/// 属性值
/// </summary>
PropertyValue,
/// <summary>
/// 旧的属性值
/// </summary>
OldPropertyValue,
/// <summary>
/// 属性元数据
/// </summary>
PropertyMetadata,
}
}