Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/cplusplus/142.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C++ 如何调试Windows应用商店应用程序(C+;+;)中的ref类属性_C++_Windows Store Apps_C++ Cx - Fatal编程技术网

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

C++ 如何调试Windows应用商店应用程序(C+;+;)中的ref类属性,c++,windows-store-apps,c++-cx,C++,Windows Store Apps,C++ Cx,在使用Visual studio 2013调试Windows应用商店应用程序时,我似乎无法在“监视”和“即时”窗口中计算ref类属性 (例如) 我想找到_inputGrid->VerticalAlignment的值,我在Watch窗口中得到了以下错误 _inputGrid->VerticalAlignment::get() name followed by '::' must be a class or namespace name _inputGrid->VerticalA

在使用Visual studio 2013调试Windows应用商店应用程序时,我似乎无法在“监视”和“即时”窗口中计算ref类属性

(例如)

我想找到_inputGrid->VerticalAlignment的值,我在Watch窗口中得到了以下错误

_inputGrid->VerticalAlignment::get()    name followed by '::' must be a class or namespace name 
_inputGrid->VerticalAlignment           Implicit function evaluation of properties is not supported.
有人知道如何调试ref类属性吗?我已经厌倦了每次检查属性时都要添加调试代码段。

Microsoft在调试程序方面还有很多工作要做,以使其在运行时看起来也像属性一样。有点鸡毛蒜皮的问题,我怀疑WinRT在调试和诊断变得容易之前能否真正成功,但在调试成功之前,他们可能不会在调试器上花费大量资源。
_inputGrid->VerticalAlignment::get()    name followed by '::' must be a class or namespace name 
_inputGrid->VerticalAlignment           Implicit function evaluation of properties is not supported.