Absent_Reality
✅ MAUI - Mutlitap Gesture
Tbh, I do not know, am still new to programming. Someone else may have a better idea. I'm looking at something sort of similar. I'm trying to track multi finger touch position. From what I've read, skia sharp had a way to do so, but I haven't tried yet. Not sure if what you are wanting would be in there or not.
https://learn.microsoft.com/en-us/samples/dotnet/maui-samples/skiasharpmaui-demos/
12 replies
New ContentPages in .net MAUI app don't have InitializeComponent() methods
Awesome! Glad you got it! I should have thought of that as well. I know sometimes Maui has issues when adding and deleting things like images where it hiccups and tells you it can't find something. Seems to help if I hit clean solution under the build tab.
17 replies
New ContentPages in .net MAUI app don't have InitializeComponent() methods
I've not tried to add a page that way, but the easiest I've found so far is to add it in the xaml in app.shell like
Then if you are adding a new page then you would add the
<ShellContent Title="TermPage" ContentTemplate="{DataTemplate local:TermPage}" Route="TermPage" /> The top one you add, like mainPage for instance, will be the first one it goes to.
<ShellContent Title="TermPage" ContentTemplate="{DataTemplate local:TermPage}" Route="TermPage" /> The top one you add, like mainPage for instance, will be the first one it goes to.
17 replies
How to prevent drag outside of a given boundary .net Maui Android.
think i figured it out to a point. Drag event has to have a drop listener to relay position info to. So on control is the <DragGestureRecognizer DragStarting="DragStarting" DropCompleted="DropCompleted" >
7 replies