System.Web.UI.WebControls.FontInfo正确使用
我想在我的 System.Web.UI.WebControls.FontInfo
类型的类上创建一个属性。但是 System.web.UI.WebControls.FontInfo 没有任何类型的公共构造函数。
我不确定如何创建 System.Web.UI.WebControls.FontInfo 的实例。不出所料,当我尝试在没有初始化的情况下使用该属性时,出现“对象引用为空”错误。
I want to create a property on my class of type System.Web.UI.WebControls.FontInfo
. However System.web.UI.WebControls.FontInfo
does not have a public constructor of any kind.
I'm not sure how to create an instance of System.Web.UI.WebControls.FontInfo
. Expectedly, I'm getting an "Object reference null" error when trying to use the property without initialization.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实例化一个 System.Web.UI.WebControls.Style 对象并使用该对象上的 Font 属性作为您的 Font 对象似乎是可接受的在自定义控件中使用
FontInfo
的解决方案。来源:ASP.Net 组件的 FontInfo 属性
Instantiating a
System.Web.UI.WebControls.Style
object and using theFont
property on that object as yourFont
object seems to be the accepted solution to usingFontInfo
in a custom control.Source: FontInfo property for ASP.Net components