WTRipper
WTRipper
The behaviour described by @chitoiur is not implemented currently and could only be added to the current API by overwriting some of the Entity methods which is not ideal for...
I have created a pull request for .NetStandard2.0 and .NetFramework4.6.1. Please have a look at the description of the pull request though. https://github.com/RonenNess/GeonBit.UI/pull/113
I think there is already a lot of code in place that could be reused. For example if you change [this line](https://github.com/rds1983/Myra/blob/1a1918606f981c13f1898d7b3e4a633118aa1f46/src/Myra/Graphics2D/UI/ScrollViewer.cs#L393) to: ``` var r = ActualBounds; ``` You...
In my last commit I added event arguments to the TouchMoved, -Entered and -Left events where the ScrollViewer can hook up an callback that is only called if the touch...
Made some larger refactorings but now it should be working. But I still need to test everything. What's not working at the moment is TextBox. I tried to remove most...
Hmm the thing is those changes where needed to provide the new functionality. 1. IsPressed was used for two things: - The state of a button while button is actually...
Just as a reminder for my todo list: I also have to look into the dropdown as it seems I broke the ability to change it's value.
@rds1983 I think I can split IsPressed into IsPressed and IsPushedDown in this PR here - and move the renaming of the other IsPressed properties and the marking as obsolete...