| 8 | namespace winrt::TranslucentTB::Xaml::Controls::implementation |
| 9 | { |
| 10 | void SwitchPresenter::OnValueChanged(const IInspectable &sender, const wux::DependencyPropertyChangedEventArgs &) |
| 11 | { |
| 12 | if (const auto that = sender.try_as<SwitchPresenter>()) |
| 13 | { |
| 14 | that->EvaluateCases(); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | SwitchPresenter::SwitchPresenter() |
| 19 | { |
nothing calls this directly
no test coverage detected