C# 字体类设计
为什么.NET中的Font类中没有setter?
如果能够通过简单地应用增量运算符(例如 font.Size++ )来减小/增大字体大小会好得多,
但是每次我想要更改字体大小或样式或其他内容时,我都必须创建一个新的实例班级。
Why there are no setters in Font class in .NET?
It would be so much better to be able to decrease/increase font size by simply aplying increment operators for instance font.Size++
But instead of this everytime I want to change font size or style or whatever, I have to create a new instance of the class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Font
类是一个 GDI+ 包装器。 GDI+ 对象没有此类操作,因此Font
类也没有此类操作。您可以在这里获取一些知识: http://msdn .microsoft.com/en-us/library/ms534437(v=vs.85).aspx
Font
class is a GDI+ wrapper. GDI+ objects don't have such operations, and thus doesn't the classFont
.You can get some knowledge here: http://msdn.microsoft.com/en-us/library/ms534437(v=vs.85).aspx