jp2masa

Results 72 comments of jp2masa

The selector is `"Panel ContentPresenter"` so it won't target `TextBlock`, try using a `ContentControl` or `ContentPresenter` instead: ```xaml ```

> Internally, a \ has a \, hence the selector. I didn't know that, sorry, still not sure where that `ContentPresenter` comes from, there's no item generator here. Also if...

This check is also broken: https://github.com/VisualMelon/oxyplot-avalonia/blob/d4b0b66411f41b11384bb50aaf035b1e86ecefe3/Source/OxyPlot.Avalonia/PlotBase.cs#L104 I think `TransformedBounds` now returns `null` when there's no transform, so a possible solution is to do this (while still keeping the one for...

I added this to the `GraphicsRoot` constructor: ```cs impl.Input = e => { Debug.WriteLine("DEBUG_TOPLEVEL_INPUT"); }; ``` And it prints the message for all pointer events.

Tried to add `_root.Renderer.Start();` after `_root.Prepare();` and it still doesn't work... Also, I'm guessing the renderer will conflict with the Vulkan rendering, and it may also cause performance issue, so...

Then maybe I should create an implementation of `ITopLevelImpl` for Vulkan, with a custom renderer? I guess that would work?

I just tried to replace that class with `PlatformManager.CreateEmbeddableWindow()`, and it works, but not sure what's the role of the parent handle now (is parent set automatically later or it...

I don't think it's a bug, because they're direct properties.

@dfkeenan I had a similar issue as well, probably the same. Try adding `[STAThread]` to `Main`, like this: ```cs [STAThread] static int Main (...) ```

The myget packages have some dependencies that shouldn't be there I think, like `RoslynTools.RepoToolset` and `Microsoft.Net.Compilers`, these should have `PrivateAssets="All"`. It would be nice if there were stable packages on...