Guest User

Untitled

a guest
Jun 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. if (this.IsInitialized)
  2. {
  3. MemoryStream ms = new MemoryStream();
  4. LocalizationInfoRes.CountryFlag.Save(ms, ImageFormat.Jpeg);
  5. ms.Position = 0;
  6. this.imgFlag.BeginInit();
  7. this.imgFlag.Source = BitmapFrame.Create(ms);
  8. this.imgFlag.EndInit();
  9. ms.Close();
  10. }
Add Comment
Please, Sign In to add comment