| 3 | |
| 4 | |
| 5 | void AnimatedValue::create() |
| 6 | { |
| 7 | if (m_animation) |
| 8 | return; |
| 9 | m_value = {}; |
| 10 | m_animation = {}; |
| 11 | m_animation.EnableDependentAnimation(true); |
| 12 | winrt::Microsoft::UI::Xaml::Media::Animation::Storyboard::SetTargetProperty(m_animation, L"Value"); |
| 13 | winrt::Microsoft::UI::Xaml::Media::Animation::Storyboard::SetTarget(m_animation, m_value); |
| 14 | } |
| 15 | |
| 16 | AnimatedValue& AnimatedValue::From(double value) |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected