SpReeD
✅ How do I get to the graphical window (where I can drag and drop tools)
Not if used correctly.
In WPF you don't use the designer, because it's not like WinForms where the designer does work.
The WPF-Designer is a mess, that's why it's not advised to use it, write XAML by hand, it saves many headaches.
Note: It's an advice, use at own risk.
94 replies
✅ MAUI - Mutlitap Gesture
I tried the built-in TapGestures, didn't work, so I gave it a try with the CommunityToolkit approach using
TouchBehavior
.
It has some fancy animation stuff, but doesn't offer actually more features.
That's my current mess, I tried different events, but with no luck - I accidentally found a way to fire my Command
on ButtonUp and ButtonDown (TouchStatus), that's it^^12 replies
✅ MAUI - Mutlitap Gesture
Almost, tap the same element with multiple fingers - so that every finger is a tap event.
Right now the tap is like a button press (button down & up), if pressed/tap-started, it's not possible to start another one, because it not yet ended (button up).
My problem is that the logic of buttons doesn't apply to touchscreens, taps ain't buttons, so it seems to me unlogical to treat them like buttons.
Every tap should fire an event (or tapbehavior command), every finger touch should to that.
In addition there should be a
Count
of "taps/fingers" in the EventArgs
, but I don't need that, all I need is that every finger fires an event on touch/down.12 replies
✅ MAUI - Mutlitap Gesture
Thanks, but no.
By "Multitap" I mean the feature that recognizes "another" tap while being tapped, e.g. you place one finger on the screen and another afterwards, and so on, all of them should be recognized.
At the moment it's like a button pressed, so you cannot press it while being pressed already, which sounds plausible, but Touchscreens don't work this way, you can "press" a button/element while it's being pressed.
12 replies
Work with .resx Resource files on vscode
I really don't get the obsession with vs-code, while at the same time a fully, specific, IDE, packed in a all-you-need package is available for free. People try desperately to hold on what is just a text-editor ¯\_(ツ)_/¯
Maybe the name is just misleading, they should name it like "Editor+"
22 replies
Packages issue
Not to forget that
microsoft.data.sqlclient
transitive packages has security issues and should be top-leveled as well.
https://github.com/advisories/GHSA-m5vv-6r4h-3vj945 replies