private Windows.FontStyle TransformFontStyle(Styles.FontStyle fontStyle)
        {
            switch (fontStyle)
            {
            case Styles.FontStyle.Normal:
                return(Windows.FontStyles.Normal);

            case Styles.FontStyle.Italic:
                return(Windows.FontStyles.Italic);

            default:
                throw new ArgumentException("fontStyle");
            }
        }
        private Drawing.FontStyle TransformFontStyle(Styles.FontStyle fontStyle)
        {
            switch (fontStyle)
            {
            case Styles.FontStyle.Normal:
                return(Drawing.FontStyle.Regular);

            case Styles.FontStyle.Italic:
                return(Drawing.FontStyle.Italic);

            default:
                throw new ArgumentException("fontStyle");
            }
        }
        private Graphics.TypefaceStyle TransformFontStyle(Styles.FontStyle fontStyle)
        {
            switch (fontStyle)
            {
            case Styles.FontStyle.Normal:
                return(Graphics.TypefaceStyle.Normal);

            case Styles.FontStyle.Italic:
                return(Graphics.TypefaceStyle.Italic);

            default:
                throw new ArgumentException("fontStyle");
            }
        }