c#获取字体平滑度

在SystemInformation下有相关函数

 string fontSmoothingContrast = "【当前字体平滑对比度】 " + SystemInformation.FontSmoothingContrast.ToString();
            Console.WriteLine(fontSmoothingContrast);
            string fontSmoothingType = "【当前字体平滑显示类型】 " + SystemInformation.FontSmoothingType;
            Console.WriteLine(fontSmoothingType);

 

posted @ 2015-08-10 20:41  孙小超  阅读(324)  评论(0)    收藏  举报