Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace System.Windows
- {
- using System.Drawing;
- using System.Windows;
- using System.Windows.Interop;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- /// <summary>
- /// TODO: Update summary.
- /// </summary>
- internal static class ImageSourceExtensions
- {
- internal static ImageSource ToImageSource(this Icon icon)
- {
- ImageSource imageSource = Imaging.CreateBitmapSourceFromHIcon(
- icon.Handle,
- Int32Rect.Empty,
- BitmapSizeOptions.FromEmptyOptions());
- return imageSource;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment