Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在我的应用程序中使用 CMFCPropertyGridProperty 时,我遇到了在运行时操作值的问题。“删除”键不起作用。在 Debug 版本中它可以工作,但在 Release 中不行。
您没有提供很多信息,所以我只是在了解您在 Debug 和 Release 构建之间的行为不同的事实。这通常是由于未初始化变量的问题——通常是布尔值——所以首先检查你的代码以确保你没有这样的问题。特别是,布尔值将在 Debug 构建中初始化为零,但在 Release 构建中可能为非零 - 这会影响应用程序中的逻辑。