Search found 7 matches
- 26 Oct 2022, 17:41
- Forum: General Discussion
- Replies: 2
- Views: 175
Re: TreeView with VirtualizingPanel Scroll Behavior
Reported here: #2447. Thanks for looking into it!
- 24 Oct 2022, 21:55
- Forum: General Discussion
- Replies: 2
- Views: 175
TreeView with VirtualizingPanel Scroll Behavior
Hello! I am using a TreeView element with a configuration similar to the "Properties" TreeView used in the Noesis Inspector code (included below): <TreeView x:Name="Properties" Grid.Row="2" ItemsSource="{Binding FilteredItems, ElementName=FilteredProperties}" ...
- 11 Oct 2022, 18:32
- Forum: General Discussion
- Replies: 8
- Views: 1192
Re: Extending GamepadTrigger::OnButtonPress to conditionally handle events
This worked perfectly! Thanks for the help!
- 10 Oct 2022, 22:09
- Forum: General Discussion
- Replies: 8
- Views: 1192
Extending GamepadTrigger::OnButtonPress to conditionally handle events
Hello! I'm currently attempting to extend the default GamepadTrigger behavior so that OnButtonPress will handle the associated event: if (GetButton() == (GamepadButton)(e.originalKey - Noesis::Key_GamepadLeft)) { InvokeActions(0); // need logic here to only change e.handled if actions were actually ...
- 15 Sep 2022, 20:26
- Forum: General Discussion
- Replies: 3
- Views: 221
Re: Directional Navigation Focus with TreeView and TreeViewItem
I will - thank you for looking into the issue!
- 15 Sep 2022, 00:01
- Forum: General Discussion
- Replies: 3
- Views: 221
Re: Directional Navigation Focus with TreeView and TreeViewItem
Looking into this a bit more, I think it may be the result of the ScrollViewer within the TreeView capturing directional navigation events - is there a way to escape the ScrollViewer when scroll is at the top?
- 14 Sep 2022, 21:49
- Forum: General Discussion
- Replies: 3
- Views: 221
Directional Navigation Focus with TreeView and TreeViewItem
Hello! I am working on building out a TreeView control that is nested within a Grid that contains other items. When using directional navigation with a controller, I am able to move focus from the outer Grid items to the TreeViewItems, but once focus is on a TreeViewItem, it will not leave the TreeV...