本文整理汇总了C#中System.Web.UI.Design.WebControls.BaseValidatorDesigner类的典型用法代码示例。如果您正苦于以下问题:C# BaseValidatorDesigner类的具体用法?C# BaseValidatorDesigner怎么用?C# BaseValidatorDesigner使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BaseValidatorDesigner类属于System.Web.UI.Design.WebControls命名空间,在下文中一共展示了BaseValidatorDesigner类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetDesignTimeHtml
//引入命名空间
using System;
using System.Web;
using System.Web.UI.WebControls;
using System.Web.UI.Design.WebControls;
using System.ComponentModel;
using System.Security.Permissions;
namespace Examples.CS.WebControls.Design
{
// The SimpleCompareValidator is a copy of the CompareValidator.
[AspNetHostingPermission(SecurityAction.Demand,
Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand,
Level = AspNetHostingPermissionLevel.Minimal)]
[Designer(typeof(Examples.CS.WebControls.Design.
SimpleCompareValidatorDesigner))]
public class SimpleCompareValidator : CompareValidator
{
} // SimpleCompareValidator
// Derive a designer that inherits from the BaseValidatorDesigner.
public class SimpleCompareValidatorDesigner : BaseValidatorDesigner
{
// Make the full extent of the control more visible in the designer.
// If the border style is None or NotSet, change the border to a
// solid line.
public override string GetDesignTimeHtml()
{
// Get a reference to the control or a copy of the control.
SimpleCompareValidator myCV = (SimpleCompareValidator)ViewControl;
string markup = null;
// Check if the border style should be changed.
if (myCV.BorderStyle == BorderStyle.NotSet ||
myCV.BorderStyle == BorderStyle.None)
{
// Save the current property setting.
BorderStyle oldBorderStyle = myCV.BorderStyle;
// Set the design-time property and catch any exceptions.
try
{
myCV.BorderStyle = BorderStyle.Solid;
// Call the base method to generate the markup.
markup = base.GetDesignTimeHtml();
}
catch (Exception ex)
{
markup = GetErrorDesignTimeHtml(ex);
}
finally
{
// Restore the property to its original setting.
myCV.BorderStyle = oldBorderStyle;
}
}
else
{
// Call the base method to generate the markup.
markup = base.GetDesignTimeHtml();
}
return markup;
} // GetDesignTimeHtml
} // SimpleCompareValidatorDesigner
} // Examples.CS.WebControls.Design