如何在Windows应用商店应用程序中调试ref类属性(C ++)

时间:2017-02-08 05:37:38

标签: c++ windows-store-apps c++-cx

使用Visual Studio 2013调试Windows应用商店应用时,我似乎无法在Watch和立即窗口中评估ref class属性。

例如)

_inputGrid = ref new XEditTransform();
_inputGrid->HorizontalAlignment = Windows::UI::Xaml::HorizontalAlignment::Left;
_inputGrid->VerticalAlignment = Windows::UI::Xaml::VerticalAlignment::Top;

我想找到_inputGrid-> VerticalAlignment的值我在Watch Window中得到以下错误。

_inputGrid->VerticalAlignment::get()    name followed by '::' must be a class or namespace name 
_inputGrid->VerticalAlignment           Implicit function evaluation of properties is not supported.

有谁知道如何使用ref类属性进行调试?每次我想检查属性时,我都厌倦了添加调试代码片段。

0 个答案:

没有答案