| 158 | } |
| 159 | |
| 160 | void MainWindowControl::ReloadVirtualMachineSettingsButtonClick( |
| 161 | winrt::IInspectable const& sender, |
| 162 | winrt::RoutedEventArgs const& e) |
| 163 | { |
| 164 | UNREFERENCED_PARAMETER(sender); |
| 165 | UNREFERENCED_PARAMETER(e); |
| 166 | |
| 167 | ::PostMessageW( |
| 168 | this->m_WindowHandle, |
| 169 | WM_COMMAND, |
| 170 | MAKEWPARAM( |
| 171 | NanaBox::MainWindowCommands::ReloadVirtualMachineSettings, |
| 172 | BN_CLICKED), |
| 173 | 0); |
| 174 | } |
| 175 | |
| 176 | void MainWindowControl::CreateVirtualHardDiskButtonClick( |
| 177 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected