Johan Appelgren

Results 69 comments of Johan Appelgren

In WPF you can get a [DrawingGroup](https://learn.microsoft.com/en-us/dotnet/api/system.windows.media.drawinggroup?view=windowsdesktop-8.0) from any [Visual](https://learn.microsoft.com/en-us/dotnet/api/system.windows.media.visual?view=windowsdesktop-8.0) using [VisualTreeHelper.GetDrawing](https://learn.microsoft.com/en-us/dotnet/api/system.windows.media.visualtreehelper.getdrawing?view=windowsdesktop-8.0). So to convert WPF element to some other format you can traverse the visual tree, get a drawing...

Will have to try, but maybe it is possible to use the existing API to accomplish something similar. Traverse the visual tree, for each visual create a new DrawingGroup, and...

Ok, that isn't possible right now either because Geometry.PlatformImpl is internal so there's no way to get the real geometries.

Ok, seems like it works by rendering each Geometry separately using a SKSvgCanvas and then replacing the fill and stroke attributes appropriately.

Can you add unit tests for the different supported excel formats and create a PR?

I don't think any of us is against providing this as a feature somehow. But just to make sure I understand. You want to differentiate between date and time by...

Some time in the future I'd love to expose this as the new DateOnly and TimeOnly structs that will be introduced in .NET 6 instead. Perhaps something to take into...

We've run into this too. For a huge number of test cases like this one: ``` Xml Logger: Unable to parse the test name 'Namespace.Fixture.ValidSpecialCharacters("%",(file://c:\foo\ba{0}r\asdf, file:///c:/foo/ba{0}r/asdf))' into a namespace type...

A big difference here is that xlsb and xlsx stores data compressed and for the binary formats numbers can many times be stored more efficiently compared to when they are...

Has this improved in more recent prerelease builds? Don't see any excessive memory usage when opening Example_DataSheet.xlsx on my end.