修改控件的visible属性
AfterWindStop opened this issue · 1 comments
AfterWindStop commented
是否有方法或者增加一个这样的方法来直接修改控件的visible属性来控制控件的显示和隐藏
VincentWei commented
有的:
ShowWindow(hwnd, SW_HIDE)
隐藏控件。ShowWindow(hwnd, SW_SHOW)
显示控件。
AfterWindStop opened this issue · 1 comments
是否有方法或者增加一个这样的方法来直接修改控件的visible属性来控制控件的显示和隐藏
有的:
ShowWindow(hwnd, SW_HIDE)
隐藏控件。ShowWindow(hwnd, SW_SHOW)
显示控件。