| 222 | } |
| 223 | |
| 224 | void MainWindowControl::DocumentationButtonClick( |
| 225 | winrt::IInspectable const& sender, |
| 226 | winrt::RoutedEventArgs const& e) |
| 227 | { |
| 228 | UNREFERENCED_PARAMETER(sender); |
| 229 | UNREFERENCED_PARAMETER(e); |
| 230 | |
| 231 | ::PostMessageW( |
| 232 | this->m_WindowHandle, |
| 233 | WM_COMMAND, |
| 234 | MAKEWPARAM( |
| 235 | NanaBox::MainWindowCommands::Documentation, |
| 236 | BN_CLICKED), |
| 237 | 0); |
| 238 | } |
| 239 | |
| 240 | void MainWindowControl::AboutButtonClick( |
| 241 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected