如何设置 TPageControl 的当前页面?
我正在使用页面控制组件,我需要添加一个按钮并单击它以转到指定页面。
请问我该怎么做?
I am using a pagecontrol component and I need to add a button and click it to go to a specified page.
How can I do this please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
向表单添加一个按钮并编写一个 OnClick 事件处理程序,如下所示:
Add a button to the form and write an OnClick event handler like this:
您可以使用 ActivePageIndex:
You can use ActivePageIndex:
我可以补充一下,您无法在 OnChange 事件中设置活动页面(我尝试了很长时间!)。任何需要的检查都必须在 OnChanging 事件中完成,然后相应地将 Allowchange 变量设置为 true 或 false:
Can I just add that you cannot set the active page within the OnChange event (I tried for ages!). Any checks that are needed must be done within the OnChanging event and then set the Allowchange var to true or false accordingly: