Search found 3000 matches

by sfernandez
44 minutes ago
Forum: General Discussion
Replies: 1
Views: 61

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
Today, 11:20
Forum: General Discussion
Replies: 1
Views: 90

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
Today, 10:50
Forum: General Discussion
Replies: 5
Views: 1441

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: 156

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: 229

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: 109

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: 229

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.
by sfernandez
19 Apr 2024, 12:44
Forum: General Discussion
Replies: 4
Views: 178

Re: Hybrid UserControl

As I mentioned before you can use any kind of element for each item in the ItemsControl, simple TextBlocks or whole panels, for example: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ItemsControl W...
by sfernandez
19 Apr 2024, 12:36
Forum: General Discussion
Replies: 1
Views: 102

Re: LocTable propagation to ContentControl's content via TemplateBinding

Hello, sorry for the late reply. I think the problem is that your MainLayout properties are not connected to the logical tree, so context is not properly inherited or markup extensions can't traverse the tree up as expected. Do you have a property changed callback for those properties? You should co...
by sfernandez
10 Apr 2024, 11:20
Forum: General Discussion
Replies: 3
Views: 140

Re: MVVM (Model View ViewModel) design in C++, research for understanding and apply an example

I want to make an Image gallery and I want to disable the corner button when it reach the end of the gallery (unclickable button and, gray color),
do some have a suggestion how to do so ?
I don't understand, can you attach an image pointing what you are trying to remove/disable?