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.
标题说明了所有内容,“如何在 Visual Basic 6 ActiveX 组件中隐藏/删除 UserControl 中的 ToolTipText 属性”。
我写了一个 ActiveX 控件,该控件没有/不需要 ToolTipText 属性,我希望从中删除该自动创建的属性,但我不知道如何!
是否有任何 API 或其他东西可以从属性窗口中删除 ToolTipText 属性?
该.ToolTipText属性是 VB6 中控件扩展器的属性,而不是您的用户控件的属性,因此您无权隐藏它。但是,当您将.InvisibleAtRuntime属性设置为True.
.ToolTipText
.InvisibleAtRuntime
True