예제 #1
0
        private FontSettingItem NewFontSetting(string windowType, string fontName, int fontSize)
        {
            FontSettingItem f = new FontSettingItem();

            f.WindowType = windowType;
            f.FontName   = fontName;
            f.FontSize   = fontSize;
            return(f);
        }
예제 #2
0
 private FontSettingItem NewFontSetting(string windowType, string fontName, int fontSize)
 {
     FontSettingItem f = new FontSettingItem();
     f.WindowType = windowType;
     f.FontName = fontName;
     f.FontSize = fontSize;
     return f;
 }