Search found 3003 matches

by sfernandez
30 Apr 2024, 21:13
Forum: General Discussion
Replies: 8
Views: 1521

Re: ToolTip in WorldSpace UI

Added a note with a link to download a patched library in the ticket: #2721
by sfernandez
30 Apr 2024, 21:05
Forum: General Discussion
Replies: 3
Views: 128

Re: Don't understand how to set grid column of data collection

Glad to help, marking this as solved then.
by sfernandez
29 Apr 2024, 16:03
Forum: General Discussion
Replies: 2
Views: 151

Re: Tab Control Content Presenter gets Local Vertical Alignment Top instead of respecting the control template

Hi, The PART_SelectedContentHost alignment is overriden by the selected TabItem Horizontal/VerticalContentAlignment properties of the tab as you can see in the WPF code here (we do the same): https://referencesource.microsoft.com/#PresentationFramework/src/Framework/System/Windows/Controls/TabContro...
by sfernandez
29 Apr 2024, 12:29
Forum: General Discussion
Replies: 3
Views: 123

Re: PageLeft and PageRight focus traversal

PageLeft/Right keys are used to scroll pages in a ScrollViewer only. Apart from that we use GamepadPageLeft/Right to simulate Ctrl+Tab focus navigation, for example to change between tabs in a TabControl. Is this what you mean? Anyway, if you need to override that behavior you need to handle those k...
by sfernandez
29 Apr 2024, 11:20
Forum: General Discussion
Replies: 3
Views: 128

Re: Don't understand how to set grid column of data collection

Hello, Each of the items in the collection is wrapped with a "container" when added to the ItemsControl.ItemsPanel. For example, in a ListBox each item will be placed as the content of a ListBoxItem, in a ComboBox inside a ComboBoxItem... and in a plain ItemsControl the container will be a...
by sfernandez
29 Apr 2024, 10:50
Forum: General Discussion
Replies: 8
Views: 1521

Re: ToolTip in WorldSpace UI

Hi, this will fixed for the upcoming 3.2.4 version, which will be released soon.
by sfernandez
22 Apr 2024, 19:02
Forum: General Discussion
Replies: 3
Views: 182

Re: Can't apply a style to TextBox

Hi, if you apply a local style without a template to a TextBox, your style should specify the BasedOn to inherit the template from the theme styles. <Style x:Key="DarkInput" TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}"> But I suggest you pro...
by sfernandez
22 Apr 2024, 13:27
Forum: General Discussion
Replies: 7
Views: 252

Re: Unreal Localization with Rive objects?

Hmm... weird, are you using Visual Studio 2022 or 2019? Have you tried to clean the project and rebuild?
by sfernandez
19 Apr 2024, 17:24
Forum: General Discussion
Replies: 2
Views: 126

Re: Do other components have a Template argument?

All FrameworkElements expose a Style property which will allow you to define property setters (and even triggers) to avoid duplication. Then, all Controls expose also a Template property (of type ControlTemplate) where you can define the appearance of that control and how it reacts to the changes in...
by sfernandez
19 Apr 2024, 17:17
Forum: General Discussion
Replies: 7
Views: 252

Re: Unreal Localization with Rive objects?

Hi, the Noesis.GUI.Extension was not including the new Runs property and RiveRun definitions.
We've updated the nuget to include them and now it should work as expected, please check v3.0.30.