예제 #1
0
 static public void SaveFontDataToXElement(FontData fdat, XElement xele)
 {
     xele.SetAttributeValue("FontSize", fdat.FontSize);
     xele.SetAttributeValue("FontFamily", fdat.FontFamily);
     xele.SetAttributeValue("FontColor", ColorManager.ToString(fdat.FontColor));
 }
예제 #2
0
 static public void LoadFontDataByXElement(FontData fdat, XElement xele)
 {
     fdat.FontSize   = int.Parse(xele.Attribute("FontSize").Value);
     fdat.FontFamily = new FontFamily(xele.Attribute("FontFamily").Value);
     fdat.FontColor  = ColorManager.Parse(xele.Attribute("FontColor").Value);
 }