本文整理汇总了C#中System.Web.UI.Design.WebControls.WebParts.WebPartManagerDesigner类的典型用法代码示例。如果您正苦于以下问题:C# WebPartManagerDesigner类的具体用法?C# WebPartManagerDesigner怎么用?C# WebPartManagerDesigner使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WebPartManagerDesigner类属于System.Web.UI.Design.WebControls.WebParts命名空间,在下文中一共展示了WebPartManagerDesigner类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: GetDesignTimeHtml
//引入命名空间
using System;
using System.Web;
using System.Security.Permissions;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.Design.WebControls.WebParts;
using System.ComponentModel;
/// <summary>
/// The PrettyPartManager class is an inherited copy of WebPartManager for
/// the purpose of applying the PrettyPartManagerDesigner at design time.
/// PrettyPartManager provides an arbitrary design time rendering of the
/// control by overriding GetDesignTimeHtml()
/// </summary>
namespace Samples.AspNet.CS.Controls
{
[AspNetHostingPermission(SecurityAction.Demand,
Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand,
Level = AspNetHostingPermissionLevel.Minimal)]
[Designer(typeof(PrettyPartManagerDesigner))]
public class PrettyPartManager : WebPartManager {}
public class PrettyPartManagerDesigner : WebPartManagerDesigner
{
public override string GetDesignTimeHtml()
{
string designTimeHtml = "";
designTimeHtml = "<div style=\"background-color:bisque;";
designTimeHtml += "border:thick groove mediumseagreen\">";
designTimeHtml += "<span style=\"font:italic 16pt bold Garamond\">";
designTimeHtml += "PrettyPartManager</span><br />";
designTimeHtml += "<span style=\"font:italic 12pt Garamond\">";
WebPartManager m = (WebPartManager)Component;
designTimeHtml += m.ID;
designTimeHtml += "</ span></ div>";
return designTimeHtml;
}
}
}
开发者ID:.NET开发者,项目名称:System.Web.UI.Design.WebControls.WebParts,代码行数:40,代码来源:WebPartManagerDesigner
注:本文中的System.Web.UI.Design.WebControls.WebParts.WebPartManagerDesigner类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论