Asp.net 中的子控件

发布于 2024-07-25 16:10:39 字数 22 浏览 5 评论 0原文

子控件存在时最早的事件是什么?

which is the earliest event when child control exists ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

各自安好 2024-08-01 16:10:39

在页面生命周期中,您可以使用 OnInit 作为最早的事件。

但如果您指的是可以访问子控件的最早事件,

请调用 EnsureChildControls方法在事件开始时,那么就可以访问该控件的子控件了。 如果子控件未启动,它只需调用 CreateChildControls 方法并启动它们。

In page lifecycle you can use OnInit as the earliest event.

but if you mean the earliest event that you can access the child controls,

Call EnsureChildControls method at the beginning of the event, then you can access the child controls of the control. If child controls are not initiated, it simply calls the CreateChildControls methods, and initiates them.

少年亿悲伤 2024-08-01 16:10:39

Control_Init 事件。

Control_Init event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文