#pragma once #include namespace System { namespace Windows { template class RoutedPropertyChangedEventArgs : public RoutedEventArgs { public: const T OldValue; const T NewValue; RoutedPropertyChangedEventArgs(const T oldValue, const T newValue) : OldValue(oldValue), NewValue(newValue) { } }; } }