Example #1
0
 /// <summary>
 /// 获取图片文件
 /// </summary>
 /// <returns></returns>
 public static void EmojiLoad(Form f)
 {
     ImageLS.ImageListS = SerializeCls.Deserialize <List <ImageListr> >(path + "Emoji.dat", desStr);
     if (ImageLS.ImageListS != null)
     {
         return;
     }
     ImageLS.ImageListS = new List <ImageListr>();
 }
Example #2
0
 /// <summary>
 /// 保存图片文件文件
 /// </summary>
 public static void EmojiSave()
 {
     SerializeCls.Serialize(ImageLS.ImageListS, path + "Emoji.dat", desStr);
 }