diff --git a/src/Calculator/Views/HistoryList.xaml b/src/Calculator/Views/HistoryList.xaml index 329b421..58f27a0 100644 --- a/src/Calculator/Views/HistoryList.xaml +++ b/src/Calculator/Views/HistoryList.xaml @@ -49,7 +49,7 @@ Invoked="OnDeleteSwipeInvoked"/> - + @@ -57,9 +57,7 @@ - + + diff --git a/src/Calculator/Views/HistoryList.xaml.cpp b/src/Calculator/Views/HistoryList.xaml.cpp index 3dd7f30..e9e74e4 100644 --- a/src/Calculator/Views/HistoryList.xaml.cpp +++ b/src/Calculator/Views/HistoryList.xaml.cpp @@ -42,11 +42,11 @@ HistoryList::HistoryList() void HistoryList::ListView_ItemClick(_In_ Object ^ sender, _In_ ItemClickEventArgs ^ e) { - HistoryViewModel ^ historyVM = static_cast(this->DataContext); - HistoryItemViewModel ^ clickedItem = safe_cast(e->ClickedItem); + HistoryViewModel^ historyVM = dynamic_cast(this->DataContext); + HistoryItemViewModel^ clickedItem = dynamic_cast(e->ClickedItem); // When the user clears the history list in the overlay view and presses enter, the clickedItem is nullptr - if (clickedItem != nullptr) + if (clickedItem != nullptr && historyVM != nullptr) { historyVM->ShowItem(clickedItem); } @@ -54,16 +54,21 @@ void HistoryList::ListView_ItemClick(_In_ Object ^ sender, _In_ ItemClickEventAr void HistoryList::OnDeleteMenuItemClicked(_In_ Object ^ sender, _In_ RoutedEventArgs ^ e) { - auto clickedItem = safe_cast(safe_cast(sender)->DataContext); - - Model->DeleteItem(clickedItem); + auto listViewItem = HistoryContextMenu->Target; + auto itemViewModel = dynamic_cast(HistoryListView->ItemFromContainer(listViewItem)); + if (itemViewModel != nullptr) + { + Model->DeleteItem(itemViewModel); + } } void HistoryList::OnDeleteSwipeInvoked(_In_ MUXC::SwipeItem ^ sender, _In_ MUXC::SwipeItemInvokedEventArgs ^ e) { - auto swipedItem = safe_cast(e->SwipeControl->DataContext); - - Model->DeleteItem(swipedItem); + auto swipedItem = dynamic_cast(e->SwipeControl->DataContext); + if (swipedItem != nullptr) + { + Model->DeleteItem(swipedItem); + } } void HistoryList::ScrollToBottom() diff --git a/src/Calculator/Views/Memory.xaml b/src/Calculator/Views/Memory.xaml index d5f7d11..b609f9f 100644 --- a/src/Calculator/Views/Memory.xaml +++ b/src/Calculator/Views/Memory.xaml @@ -17,7 +17,7 @@ - + @@ -42,6 +42,7 @@ BasedOn="{StaticResource HistoryMemoryItemContainerStyle}" TargetType="ListViewItem"> + @@ -103,8 +104,6 @@ (Resources->Lookup("MemoryContextMenu")); MemoryPaneEmpty->FlowDirection = LocalizationService::GetInstance()->GetFlowDirection(); } @@ -56,53 +55,31 @@ void Memory::MemoryListItemClick(_In_ Object ^ sender, _In_ ItemClickEventArgs ^ } } -void Memory::OnContextRequested(Windows::UI::Xaml::UIElement ^ sender, Windows::UI::Xaml::Input::ContextRequestedEventArgs ^ e) -{ - // Walk up the tree to find the ListViewItem. - // There may not be one if the click wasn't on an item. - auto requestedElement = safe_cast(e->OriginalSource); - while ((requestedElement != sender) && !dynamic_cast(requestedElement)) - { - requestedElement = safe_cast(VisualTreeHelper::GetParent(requestedElement)); - } - - if (requestedElement != sender) - { - // The context menu request was for a ListViewItem. - auto memorySlot = safe_cast(MemoryListView->ItemFromContainer(requestedElement)); - Point point; - if (e->TryGetPosition(requestedElement, &point)) - { - m_memoryItemFlyout->ShowAt(requestedElement, point); - } - else - { - // Not invoked via pointer, so let XAML choose a default location. - m_memoryItemFlyout->ShowAt(requestedElement); - } - - e->Handled = true; - } -} - -void Memory::OnContextCanceled(Windows::UI::Xaml::UIElement ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e) -{ - m_memoryItemFlyout->Hide(); -} - void Memory::OnClearMenuItemClicked(_In_ Object ^ sender, _In_ RoutedEventArgs ^ e) { - GetMemoryItemForCurrentFlyout()->Clear(); + auto memoryItem = GetMemoryItemForCurrentFlyout(); + if (memoryItem != nullptr) + { + memoryItem->Clear(); + } } void Memory::OnMemoryAddMenuItemClicked(_In_ Object ^ sender, _In_ RoutedEventArgs ^ e) { - GetMemoryItemForCurrentFlyout()->MemoryAdd(); + auto memoryItem = GetMemoryItemForCurrentFlyout(); + if (memoryItem != nullptr) + { + memoryItem->MemoryAdd(); + } } void Memory::OnMemorySubtractMenuItemClicked(_In_ Object ^ sender, _In_ RoutedEventArgs ^ e) { - GetMemoryItemForCurrentFlyout()->MemorySubtract(); + auto memoryItem = GetMemoryItemForCurrentFlyout(); + if (memoryItem != nullptr) + { + memoryItem->MemorySubtract(); + } } bool Memory::IsErrorVisualState::get() @@ -122,7 +99,6 @@ void Memory::IsErrorVisualState::set(bool value) MemoryItemViewModel ^ Memory::GetMemoryItemForCurrentFlyout() { - auto listViewItem = m_memoryItemFlyout->Target; - - return safe_cast(MemoryListView->ItemFromContainer(listViewItem)); + auto listViewItem = MemoryContextMenu->Target; + return dynamic_cast(MemoryListView->ItemFromContainer(listViewItem)); } diff --git a/src/Calculator/Views/Memory.xaml.h b/src/Calculator/Views/Memory.xaml.h index 4ebf0b1..31b7900 100644 --- a/src/Calculator/Views/Memory.xaml.h +++ b/src/Calculator/Views/Memory.xaml.h @@ -36,14 +36,11 @@ namespace CalculatorApp } private: - Windows::UI::Xaml::Controls::MenuFlyout ^ m_memoryItemFlyout; Windows::Foundation::Rect m_visibleBounds; Windows::Foundation::Rect m_coreBounds; bool m_isErrorVisualState; void MemoryListItemClick(_In_ Platform::Object ^ sender, _In_ Windows::UI::Xaml::Controls::ItemClickEventArgs ^ e); - void OnContextRequested(Windows::UI::Xaml::UIElement ^ sender, Windows::UI::Xaml::Input::ContextRequestedEventArgs ^ e); - void OnContextCanceled(Windows::UI::Xaml::UIElement ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e); void OnClearMenuItemClicked(_In_ Platform::Object ^ sender, _In_ Windows::UI::Xaml::RoutedEventArgs ^ e); void OnMemoryAddMenuItemClicked(_In_ Platform::Object ^ sender, _In_ Windows::UI::Xaml::RoutedEventArgs ^ e); void OnMemorySubtractMenuItemClicked(_In_ Platform::Object ^ sender, _In_ Windows::UI::Xaml::RoutedEventArgs ^ e);