C ++ WinRT UWP XAML Привязка данных ItemsSource и SelectedIndex к IObservableVector <hstring>не работает - PullRequest
2 голосов
/ 30 января 2020

Я использую Visual Studio 2019 16.4.3, Microsoft. Windows .CppWinRT 2.0.200117.5, Windows 10 1809 Pro и нацелен на 10.0.17763.0.

Я пытаюсь портировать C ++ / Приложение CX для C ++ WinRT. Я использую привязку данных свойств ItemsSource, SelectedIndex и SelectedItem поля со списком, но у меня возникают проблемы.

Для ItemsSource я привязываюсь к IObservableVector<String>. Свойство реализовано с использованием IObservableVector<hstring> и инициализировано с помощью single_threaded_observable_vector(std::vector<hstring>({L"One", L"Two", L"Three"}))

При запуске приложения я получаю следующее исключение:

Исключение, выданное в 0x766B19B2 в BlankCppWinRT.exe: исключение Microsoft C ++: winrt :: hresult_no_interface в ячейке памяти 0x03AED210. произошло

Это должно работать? Как мне связать данные ItemsSource с набором строк? Это работает в C# и C ++ / CX. Что является эквивалентом в C ++ WinRT?

Когда я удаляю двустороннюю привязку к SelectedIndex, приложение запускается и показывает три строки в поле со списком, с пустым выбранным элементом. Но когда я пытаюсь установить выбранный индекс в коде с помощью myComboBox().SelectedIndex(0); (в конструкторе), я получаю то же исключение. Принимая во внимание, что та же строка работает в обработчике Loaded страницы.

Подробности ниже.

Есть идеи?

Стек вызовов исключений:

    KernelBase.dll!_RaiseException@16() Unknown
    vcruntime140d_app.dll!_CxxThrowException(void * pExceptionObject, const _s__ThrowInfo * pThrowInfo) Line 133    C++
>   BlankCppWinRT.exe!winrt::throw_hresult(const winrt::hresult result) Line 4623   C++
    BlankCppWinRT.exe!winrt::check_hresult(const winrt::hresult result) Line 4700   C++
    BlankCppWinRT.exe!winrt::impl::as<winrt::Windows::Foundation::IReference<winrt::hstring>,winrt::impl::abi<winrt::Windows::Foundation::IUnknown,void>::type>(winrt::impl::abi<winrt::Windows::Foundation::IUnknown,void>::type * ptr) Line 1941  C++
    BlankCppWinRT.exe!winrt::Windows::Foundation::IUnknown::as<winrt::Windows::Foundation::IReference<winrt::hstring>>() Line 2026  C++
    BlankCppWinRT.exe!winrt::unbox_value<winrt::hstring>(const winrt::Windows::Foundation::IInspectable & value) Line 2872  C++
    BlankCppWinRT.exe!winrt::impl::convertible_observable_vector<winrt::hstring,std::vector<winrt::hstring,std::allocator<winrt::hstring>>>::IndexOf(const winrt::Windows::Foundation::IInspectable & value, unsigned int & index) Line 2547    C++
    BlankCppWinRT.exe!winrt::impl::produce<winrt::impl::convertible_observable_vector<winrt::hstring,std::vector<winrt::hstring,std::allocator<winrt::hstring>>>,winrt::Windows::Foundation::Collections::IVector<winrt::Windows::Foundation::IInspectable>>::IndexOf(void * value, unsigned int * index, bool * winrt_impl_result) Line 566    C++
    Windows.UI.Xaml.dll!DirectUI::ItemCollection::IndexOf(IInspectable * value, unsigned int * index, unsigned char * found) Line 139   C++
    Windows.UI.Xaml.dll!DirectUI::ItemsControl::IsHostForItemContainer(Windows::UI::Xaml::IDependencyObject * pContainer, unsigned char * pIsHost) Line 1939    C++
    Windows.UI.Xaml.dll!DirectUI::ComboBox::IsHostForItemContainer(Windows::UI::Xaml::IDependencyObject * pContainer, unsigned char * pIsHost) Line 1239    C++
    Windows.UI.Xaml.dll!DirectUI::ItemContainerGenerator::ItemFromContainerImpl(Windows::UI::Xaml::IDependencyObject * container, IInspectable * * returnValue) Line 767    C++
    Windows.UI.Xaml.dll!DirectUI::ItemContainerGeneratorGenerated::ItemFromContainer(Windows::UI::Xaml::IDependencyObject * pContainer, IInspectable * * ppReturnValue) Line 222    C++

Это мой код XAML:

<Page
    x:Class="BlankCppWinRT.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:BlankCppWinRT"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Loaded="OnLoaded">

    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
        <Button Margin="8" Width="160" x:Name="myButton" Click="ClickHandler">Click Me</Button>
        <ComboBox Margin="8" Width="160" x:Name="myComboBox" ItemsSource="{x:Bind Path=BoxItems}" SelectedIndex="{x:Bind Path=SelectedBoxItemIndex, Mode=TwoWay}"/>
    </StackPanel>
</Page>

Это файл .idl:

namespace BlankCppWinRT
{
    [bindable]
    [default_interface]
    runtimeclass MainPage : Windows.UI.Xaml.Controls.Page, Windows.UI.Xaml.Data.INotifyPropertyChanged
    {
        MainPage();
        Windows.Foundation.Collections.IObservableVector<String> BoxItems{get;};
        Int32 SelectedBoxItemIndex;
        protected void RaisePropertyChanged(String propertyName);
    }
}

This MainPage.h:

#pragma once

#include "MainPage.g.h"

namespace winrt::BlankCppWinRT::implementation
{
    struct MainPage : MainPageT<MainPage>
    {
        MainPage();

        Windows::Foundation::Collections::IObservableVector<hstring> BoxItems();

        int32_t SelectedBoxItemIndex();
        void SelectedBoxItemIndex(int32_t value);

        void ClickHandler(Windows::Foundation::IInspectable const& sender, Windows::UI::Xaml::RoutedEventArgs const& args);

        void RaisePropertyChanged(hstring const& propertyName);
        winrt::event_token PropertyChanged(Windows::UI::Xaml::Data::PropertyChangedEventHandler const& handler);
        void PropertyChanged(winrt::event_token const& token) noexcept;

        void OnLoaded(winrt::Windows::Foundation::IInspectable const& sender, winrt::Windows::UI::Xaml::RoutedEventArgs const& e);

    protected:
        template<typename T>
        bool SetProperty(T& storage, const T& value, const hstring& propertyName)
        {
            if (storage == value)
                return false;
            storage = value;
            RaisePropertyChanged(propertyName);
            return true;
        }

    private:
        event<winrt::Windows::UI::Xaml::Data::PropertyChangedEventHandler> m_propertyChanged;

    private:
        Windows::Foundation::Collections::IObservableVector<hstring> m_boxItems;
        int m_selectedBoxItemIndex{};
    };
}

namespace winrt::BlankCppWinRT::factory_implementation
{
    struct MainPage : MainPageT<MainPage, implementation::MainPage>
    {
    };
}

Это MainPage . cpp:

#include "pch.h"
#include "MainPage.h"
#include "MainPage.g.cpp"

using namespace winrt;
using namespace Windows::UI::Xaml;

namespace winrt::BlankCppWinRT::implementation
{
    MainPage::MainPage()
        : m_boxItems{single_threaded_observable_vector(std::vector<hstring>({L"One", L"Two", L"Three"}))}
    {
        InitializeComponent();
        //causes exception
        //myComboBox().SelectedIndex(0);
    }

    Windows::Foundation::Collections::IObservableVector<hstring> MainPage::BoxItems()
    {
        return m_boxItems;
    }

    int32_t MainPage::SelectedBoxItemIndex()
    {
        return m_selectedBoxItemIndex;
    }

    // data binding to SelectedBoxItemIndex causes exception

    void MainPage::SelectedBoxItemIndex(int32_t value)
    {
        SetProperty(m_selectedBoxItemIndex, value, L"SelectedBoxItemIndex");
    }

    void MainPage::ClickHandler(IInspectable const&, RoutedEventArgs const&)
    {
        myButton().Content(box_value(L"Clicked"));
        SelectedBoxItemIndex(2);
    }

    void MainPage::RaisePropertyChanged(hstring const& propertyName)
    {
        m_propertyChanged(*this, PropertyChangedEventArgs(propertyName));
    }

    winrt::event_token MainPage::PropertyChanged(Windows::UI::Xaml::Data::PropertyChangedEventHandler const& handler)
    {
        return m_propertyChanged.add(handler);
    }

    void MainPage::PropertyChanged(winrt::event_token const& token) noexcept
    {
        m_propertyChanged.remove(token);
    }

    void MainPage::OnLoaded(winrt::Windows::Foundation::IInspectable const& sender, winrt::Windows::UI::Xaml::RoutedEventArgs const& e)
    {
        // works
        myComboBox().SelectedIndex(0);
    }
}

1 Ответ

1 голос
/ 12 февраля 2020

В качестве временного исправления вы могли бы go в Windows Физические данные.Collections.h переопределить метод IndexOf (). При сбое unbox_value перехватывает исключение hresult_no_interface и возвращает false. Для более подробной информации, вы можете обратиться к этой теме .

bool IndexOf(Windows::Foundation::IInspectable const& value, uint32_t& index) const
{
    //return IndexOf(unbox_value<T>(value), index);
    try
    {
        return IndexOf(unbox_value<T>(value), index);
    }
    catch (hresult_no_interface const&)
    {
        return false; // unbox_value failed, "value" wasn't even a boxed T
    }
}
...