| 52 | } |
| 53 | |
| 54 | void EditPage::EditBox_TextChanging(IInspectable const&, RichEditBoxTextChangingEventArgs const&) |
| 55 | { |
| 56 | if (m_loaded == 2) { |
| 57 | SaveModifiedContent = m_saveModifiedContent; |
| 58 | SaveButton().IsEnabled(true); |
| 59 | } |
| 60 | else { |
| 61 | m_loaded++; |
| 62 | } |
| 63 | } |
| 64 | fire_and_forget EditPage::SaveButton_Click(IInspectable const& sender, RoutedEventArgs const&) { |
| 65 | try { |
| 66 | const auto lifetime = get_strong(); |
nothing calls this directly
no outgoing calls
no test coverage detected