Last active
March 21, 2024 14:48
-
-
Save D4koon/2b397eca452b75115f19063560efbbb3 to your computer and use it in GitHub Desktop.
Create a Icon that calls DestroyIcon() when the Destructor is called.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class IconExtensions | |
{ | |
/// <summary> | |
/// Create a Icon that calls DestroyIcon() when the Destructor is called. | |
/// Unfortunatly Icon.FromHandle() initializes with the internal Icon-constructor Icon(handle, false), which sets the internal value "ownHandle" to false | |
/// This way because of the false, DestroyIcon() is not called as can be seen here: | |
/// https://referencesource.microsoft.com/#System.Drawing/commonui/System/Drawing/Icon.cs,f2697049dea34e7c,references | |
/// To get arround this we get the constructor internal Icon(IntPtr handle, bool takeOwnership) from Icon through reflection and initialize that way | |
/// </summary> | |
private static Icon BitmapToIcon(Bitmap bitmap) | |
{ | |
Type[] cargt = new[] { typeof(IntPtr), typeof(bool) }; | |
ConstructorInfo ci = typeof(Icon).GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance, null, cargt, null); | |
object[] cargs = new[] { (object)bitmap.GetHicon(), true }; | |
Icon icon = (Icon)ci.Invoke(cargs); | |
return icon; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MIT License | |
Copyright (c) 2020 Sebastian Amann | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
SOFTWARE. |
Yes is MIT, i added a LICENSE file to make it clear
Thanks for the quick reply and update!
Very useful. Thx!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for providing this. Is there a license you would apply to this? Perhaps MIT?