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.
我制作了一个新组件,它在 IDE 上执行构造函数中的代码。我需要阻止它这样做,并且只在它实际执行程序时执行代码。我正在使用 C++ Builder 2009。
删除您制作的使 IDE 执行此操作的新组件。
if (ComponentState.Contains(csDesigning)) ShowMessage("Design-time"); else ShowMessage("Runtime");