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)); }
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); }