Thorsten Jung
Thorsten Jung
It seems it has to do with conceptual changes in VS2017: [Changes in Visual Studio 2017 extensibility](https://docs.microsoft.com/en-us/visualstudio/extensibility/breaking-changes-2017)
Hello Susanadev ***@***.******@***.***>, Mr. Mastykarz First and foremost: I’m the author of electrifier: Project: electrifier integrated desktop environment · Issue #188 · microsoft/hack-together (github.com) My Name is Thorsten Jung from...
looks terrific. 👍
@dahall Thank you very much. I really appreciate this. I thought about aligning the interfaces of the `WinUI3 ExplorerBrowser` aka `ShellListView` / `ShellTreeView` that I'll implement the next days to...
> @tajbender I haven't done much with WinUI. btw, they have done an excellent job with WinUI3, in my humble opinion. I've never worked with WPF and UWP before, but...
Done so far.
addendum: These classes my help out: https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/win32/microsoft.ui.interop/
addendum: This should do it, for single images: ``` Bitmap bitmap1 = Bitmap.FromHicon(SystemIcons.Hand.Handle); Graphics formGraphics = this.CreateGraphics(); GraphicsUnit units = GraphicsUnit.Point; RectangleF bmpRectangleF = bitmap1.GetBounds(ref units); Rectangle bmpRectangle = Rectangle.Round(bmpRectangleF);...
> @tajbender What type(s) do you want converted from and to? I don't have a `SysImageList` class. Do you mean a native image list handle (HIMAGELIST)? What is the output...
> I think you may be able to use `Vanara.Windows.Shell.ShellImageList` (in Vanara.Windows.Shell.Common) to expose the `SafeHICON` of system files or folders and wrap that into a class the derives from...