| 190 | } |
| 191 | |
| 192 | void MainWindowControl::ResizeVirtualHardDiskButtonClick( |
| 193 | winrt::IInspectable const& sender, |
| 194 | winrt::RoutedEventArgs const& e) |
| 195 | { |
| 196 | UNREFERENCED_PARAMETER(sender); |
| 197 | UNREFERENCED_PARAMETER(e); |
| 198 | |
| 199 | ::PostMessageW( |
| 200 | this->m_WindowHandle, |
| 201 | WM_COMMAND, |
| 202 | MAKEWPARAM( |
| 203 | NanaBox::MainWindowCommands::ResizeVirtualHardDisk, |
| 204 | BN_CLICKED), |
| 205 | 0); |
| 206 | } |
| 207 | |
| 208 | void MainWindowControl::CompactVirtualHardDiskButtonClick( |
| 209 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected