自定义复合控制
我创建了 Composite 控件,其中包含 FormView 和两个自定义服务器控件。控件正确呈现。现在,当我从工具箱将控件添加到页面时,我想编辑复合控件的 FormView ItemTemplte,因为我们编辑通用表单视图的 ItemTemplate(通过单击小箭头)。
有什么办法吗?
I've Creted Composite control which has FormView and two custom server control. The Control renders correctly. now when i add control to page from toolbox i want to edit Composite Control's FormView ItemTemplte as we edit ItemTemplate for generic formview (by clicking small arrow head).
any adeas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 FormView 的实例时,请以编程方式将模板添加到 FormView,然后再在 CreateControlHierarchy() 方法中将其添加到 CompoisteControl。
这是一个广泛的示例
When you create an instance of the FormView, programmatically add the templates to the FormView before adding it to the CompoisteControl in the CreateControlHierarchy() method.
Here is an extensive example