| 142 | } |
| 143 | |
| 144 | void MainWindowControl::VirtualMachineSettingsButtonClick( |
| 145 | winrt::IInspectable const& sender, |
| 146 | winrt::RoutedEventArgs const& e) |
| 147 | { |
| 148 | UNREFERENCED_PARAMETER(sender); |
| 149 | UNREFERENCED_PARAMETER(e); |
| 150 | |
| 151 | ::PostMessageW( |
| 152 | this->m_WindowHandle, |
| 153 | WM_COMMAND, |
| 154 | MAKEWPARAM( |
| 155 | NanaBox::MainWindowCommands::VirtualMachineSettings, |
| 156 | BN_CLICKED), |
| 157 | 0); |
| 158 | } |
| 159 | |
| 160 | void MainWindowControl::ReloadVirtualMachineSettingsButtonClick( |
| 161 | winrt::IInspectable const& sender, |
nothing calls this directly
no outgoing calls
no test coverage detected