| 9 | namespace winrt::TranslucentTB::Xaml::Controls::implementation |
| 10 | { |
| 11 | void ConstrainedBox::OnDependencyPropertyChanged(const IInspectable &sender, const wux::DependencyPropertyChangedEventArgs &) |
| 12 | { |
| 13 | if (const auto that = sender.try_as<ConstrainedBox>()) |
| 14 | { |
| 15 | that->InvalidateMeasure(); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | wf::Size ConstrainedBox::MeasureOverride(wf::Size availableSize) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected