| 5 | namespace winrt::FastCopy::implementation |
| 6 | { |
| 7 | struct SettingContainer : SettingContainerT<SettingContainer> |
| 8 | { |
| 9 | SettingContainer() = default; |
| 10 | |
| 11 | winrt::Windows::Foundation::IInspectable Symbol(); |
| 12 | void Symbol(winrt::Windows::Foundation::IInspectable symbol); |
| 13 | static winrt::Microsoft::UI::Xaml::DependencyProperty SymbolProperty(); |
| 14 | |
| 15 | winrt::hstring Title(); |
| 16 | void Title(winrt::hstring title); |
| 17 | static winrt::Microsoft::UI::Xaml::DependencyProperty TitleProperty(); |
| 18 | |
| 19 | winrt::hstring HelpText(); |
| 20 | void HelpText(winrt::hstring helpText); |
| 21 | static winrt::Microsoft::UI::Xaml::DependencyProperty HelpTextProperty(); |
| 22 | |
| 23 | winrt::Microsoft::UI::Xaml::Visibility ShowReset(); |
| 24 | void ShowReset(winrt::Microsoft::UI::Xaml::Visibility showReset); |
| 25 | static winrt::Microsoft::UI::Xaml::DependencyProperty ShowResetProperty(); |
| 26 | |
| 27 | winrt::Windows::Foundation::IInspectable HeaderContent(); |
| 28 | void HeaderContent(winrt::Windows::Foundation::IInspectable header); |
| 29 | static winrt::Microsoft::UI::Xaml::DependencyProperty HeaderContentProperty(); |
| 30 | |
| 31 | winrt::Windows::Foundation::IInspectable ExpanderContent(); |
| 32 | void ExpanderContent(winrt::Windows::Foundation::IInspectable expanderContent); |
| 33 | static winrt::Microsoft::UI::Xaml::DependencyProperty ExpanderContentProperty(); |
| 34 | private: |
| 35 | static winrt::Microsoft::UI::Xaml::DependencyProperty m_symbolProperty; |
| 36 | static winrt::Microsoft::UI::Xaml::DependencyProperty m_titleProperty; |
| 37 | static winrt::Microsoft::UI::Xaml::DependencyProperty m_helpTextProperty; |
| 38 | static winrt::Microsoft::UI::Xaml::DependencyProperty m_showResetProperty; |
| 39 | static winrt::Microsoft::UI::Xaml::DependencyProperty m_headerContentProperty; |
| 40 | static winrt::Microsoft::UI::Xaml::DependencyProperty m_expanderContentProperty; |
| 41 | }; |
| 42 | } |
| 43 | |
| 44 | namespace winrt::FastCopy::factory_implementation |
nothing calls this directly
no outgoing calls
no test coverage detected