asp.net 页面垂直分割面板 - msdn 样式

发布于 2024-11-05 02:27:29 字数 274 浏览 2 评论 0原文

我已在 CodePlex 上下载了 Splitter Panel Ajaxian ASP.NET WebControl。这正是我需要在项目中实现的。

问题是没有好的文档可用,并且我无法访问 LeftPaneRightPane 标记内的控件。

您能否推荐任何可用于访问左侧和右侧窗格中的控件的示例代码或文章或其他文档?

I have downloaded the Splitter Panel Ajaxian ASP.NET WebControl on CodePlex. This is exactly what i need to implement in the project.

The problem is there is no good documentation available and I am not able to access the controls inside the LeftPane and RightPane tags.

Can you recommend any sample code or articles or other documentation available to access controls that are placed in the left and the right panes?

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

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

发布评论

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

评论(1

一个人的旅程 2024-11-12 02:27:29

使用最新版本尝试此操作:

Label label1 = (Label)SplitterPanel1.FindControl("label1");

或者,对于右窗格,执行以下操作:

Label label1 = (Label)SplitterPanel1.RightOwner.FindControl("label1");

对于左窗格,您可以执行以下操作:

Label label1 = (Label)SplitterPanel1.LeftOwner.FindControl("label1");

Try this with the latest release:

Label label1 = (Label)SplitterPanel1.FindControl("label1");

Or, for the right pane, do this:

Label label1 = (Label)SplitterPanel1.RightOwner.FindControl("label1");

For left pane you can do this:

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