| 206 | } |
| 207 | |
| 208 | void MainWindowControl::CompactVirtualHardDiskButtonClick( |
| 209 | winrt::IInspectable const& sender, |
| 210 | winrt::RoutedEventArgs const& e) |
| 211 | { |
| 212 | UNREFERENCED_PARAMETER(sender); |
| 213 | UNREFERENCED_PARAMETER(e); |
| 214 | |
| 215 | ::PostMessageW( |
| 216 | this->m_WindowHandle, |
| 217 | WM_COMMAND, |
| 218 | MAKEWPARAM( |
| 219 | NanaBox::MainWindowCommands::CompactVirtualHardDisk, |
| 220 | BN_CLICKED), |
| 221 | 0); |
| 222 | } |
| 223 | |
| 224 | void MainWindowControl::DocumentationButtonClick( |
| 225 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected