| 35 | } |
| 36 | |
| 37 | static wf::IReference<bool> GetAutoLayout(const wux::FrameworkElement &element) |
| 38 | { |
| 39 | if (element) |
| 40 | { |
| 41 | return element.GetValue(m_AutoLayoutProperty).as<wf::IReference<bool>>(); |
| 42 | } |
| 43 | else |
| 44 | { |
| 45 | return nullptr; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | static void SetAutoLayout(const wux::FrameworkElement &element, const wf::IReference<bool> &value) |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected