示例#1
0
        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");
            }
        }
示例#2
0
        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");
            }
        }
示例#3
0
        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");
            }
        }