使用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类属性进行调试?每次我想检查属性时,我都厌倦了添加调试代码片段。