|
#region Assembly UIAutomationTypes, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\UIAutomationTypes.dll
#endregion
namespace System.Windows.Automation
{
public sealed class AutomationPropertyChangedEventArgs : AutomationEventArgs
{
public AutomationPropertyChangedEventArgs(AutomationProperty property, object oldValue, object newValue);
public object NewValue { get; }
public object OldValue { get; }
public AutomationProperty Property { get; }
}
} |