Search found 2702 matches
- 23 Nov 2022, 12:28
- Forum: General Discussion
- Replies: 2
- Views: 573
Re: button keyboard opening
Hello, The space bar is the default action key used to press a focused Button. The return key can also be used to press a focused Button if you set KeyboardNavigation::AcceptsReturn to true. But setting it to false, only disables the return key, not the space key. If you want to disable the space ba...
- 23 Nov 2022, 12:20
- Forum: General Discussion
- Replies: 2
- Views: 249
Re: Handling focus problem/help
Hello, Could you try adding a noesis:SetFocusAction when you show the left menu, something like this: <Grid x:Name="LayoutRoot"> <Grid x:Name="MainView" Margin="10"> <b:Interaction.Triggers> <b:KeyTrigger FiredOn="KeyDown" Key="Left"> <b:ChangeProper...
- 16 Nov 2022, 17:02
- Forum: General Discussion
- Replies: 8
- Views: 420
Re: Updating from 3.1.2 to 3.1.5 causes build failure.
Hello, as I mentioned before the change we made for 3.1.5 was incorrect and should be considered a bug. We are working on solving this for the next release coming very soon. In the meantime I recommend staying at 3.1.4 version to avoid changing anything from your project.
- 16 Nov 2022, 16:58
- Forum: General Discussion
- Replies: 6
- Views: 222
Re: Unable to set binding with PolyLineSegment.Points property
Not a problem, glad to be helpful!
- 16 Nov 2022, 16:57
- Forum: General Discussion
- Replies: 3
- Views: 155
Re: Special Characters Reference
Thanks for sharing that link, I'm sure it would be very helpful for others too.
- 16 Nov 2022, 16:55
- Forum: General Discussion
- Replies: 8
- Views: 314
Re: Effects/Opacity Issues
Thanks for the report.
- 16 Nov 2022, 16:54
- Forum: General Discussion
- Replies: 3
- Views: 157
Re: Directional navigation not working inside ContextMenu
Hi, defining the MenuItems inside the ContextMenu template makes little sense because that will mean that all the context menus in your application using that template will have the same entries. Apart from that you are adding the MenuItems to the StackPanel in the template, they won't be added to t...
- 15 Nov 2022, 11:23
- Forum: General Discussion
- Replies: 3
- Views: 155
Re: Special Characters Reference
Hi stonstad, By default we load a list of font fallbacks available for each platform (see NoesisUnity.cs, SetDefaultFont() method). This can be disabled in Noesis Settings: platformfonts.png One of these fallbacks for windows is the "Segoe UI Emoji" font, where that character is found. The...
- 15 Nov 2022, 11:03
- Forum: General Discussion
- Replies: 8
- Views: 314
Re: Effects/Opacity Issues
Thanks for the example xaml, I can reproduce it now. The issue is happening when there is an opacity group (opacity < 1) wrapping elements with effects. Could you please report this in our bugtracker? In the meantime you can workaround it by applying the opacity to the individual rectangles and bord...
- 15 Nov 2022, 10:15
- Forum: General Discussion
- Replies: 6
- Views: 222
Re: Unable to set binding with PolyLineSegment.Points property
Thanks for the report. Regarding the Points property, WPF doesn't work either if you try to bind a List<Point> collection: Cannot convert from type 'System.Collections.Generic.List`1[System.Windows.Point]' to 'System.Windows.Media.PointCollection'. Consider setting a converter on the binding.