本文整理匯總了C#中System.Drawing.FontFamily.?.Dispose方法的典型用法代碼示例。如果您正苦於以下問題:C# FontFamily.?.Dispose方法的具體用法?C# FontFamily.?.Dispose怎麽用?C# FontFamily.?.Dispose使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Drawing.FontFamily
的用法示例。
在下文中一共展示了FontFamily.?.Dispose方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetFont
/// <summary>
/// Gets the specified font.
/// </summary>
/// <param name="familyName">The font's family</param>
/// <param name="emSize">Size of the font, in the given unit.</param>
/// <param name="style">The font's style.</param>
/// <param name="unit">Units for the size : pixels, points, etc. Default is point.</param>
/// <returns></returns>
public static Font GetFont(string familyName, float emSize, FontStyle style = FontStyle.Regular,
GraphicsUnit unit = GraphicsUnit.Point)
{
try
{
FontFamily family = null;
try
{
try
{
// Initial try
family = new FontFamily(familyName); // Will accept anything and won't throw an error
return new Font(familyName, emSize, style, unit);
}
catch (ArgumentException e)
{
// First fallback : default family
ExceptionHandler.LogException(e, true);
return new Font(DefaultFont.FontFamily, emSize, style, unit);
}
}
catch (ArgumentException e)
{
// Second fallback : default family and style
ExceptionHandler.LogException(e, true);
family = family ?? DefaultFont.FontFamily;
return new Font(family, emSize, DefaultFont.Style, unit);
}
finally
{
family?.Dispose();
}
}
catch (ArgumentException e)
{
// Third fallback : all to default
ExceptionHandler.LogException(e, true);
return DefaultFont;
}
}