| 549 | } |
| 550 | |
| 551 | void ColorPicker::OnHexInputTextBoxLostFocus(const IInspectable &, const wux::RoutedEventArgs &) |
| 552 | { |
| 553 | try |
| 554 | { |
| 555 | UpdateColorRightNow(Util::Color::FromString(m_HexInputTextBox.Text(), true)); |
| 556 | } |
| 557 | catch (...) |
| 558 | { |
| 559 | UpdateColorControlValues(); |
| 560 | UpdateChannelSliderBackgrounds(); |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | fire_and_forget ColorPicker::OnCheckeredBackgroundBorderLoaded(const IInspectable &sender, const wux::RoutedEventArgs &args) |
| 565 | { |
nothing calls this directly
no outgoing calls
no test coverage detected