MCPcopy Create free account
hub / github.com/HO-COOH/FastCopy / create

Method create

FastCopy/AnimatedValue.cpp:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4
5void 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
16AnimatedValue& AnimatedValue::From(double value)
17{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected