Search found 2995 matches

by sfernandez
Today, 17:24
Forum: General Discussion
Replies: 2
Views: 74

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
Today, 17:17
Forum: General Discussion
Replies: 5
Views: 119

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
Today, 12:44
Forum: General Discussion
Replies: 3
Views: 103

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
Today, 12:36
Forum: General Discussion
Replies: 1
Views: 80

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

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?
by sfernandez
10 Apr 2024, 11:16
Forum: General Discussion
Replies: 3
Views: 103

Re: Hybrid UserControl

Hi Kristoffer, UserControl (which inherits from ContentControl) already exposes a ContentPropertyMetadata for the Content property, so it will conflict with your custom class and it won't work as you expected. For adding multiple children, have you considered using an ItemsControl? You can define th...
by sfernandez
10 Apr 2024, 11:02
Forum: General Discussion
Replies: 3
Views: 2080

Re: Localization and ChangePropertyAction

I've created ticket #3226 to track development of this feature.
For the moment there's been no progress, sorry.

Can you use the proposed workaround or is not an option for you?
by sfernandez
10 Apr 2024, 10:56
Forum: General Discussion
Replies: 5
Views: 110

Re: localization change from data trigger

Hi Sam, if you need support for using LocExtension as a Setter value, could you please open a ticket about it. We will try to find a way to make it work in those scenarios too.
by sfernandez
10 Apr 2024, 10:43
Forum: General Discussion
Replies: 6
Views: 102

Re: Connect to Child Event

We've updated the events tutorial so documentation will be fixed in the next release, thanks for your feedback.
by sfernandez
04 Apr 2024, 17:16
Forum: General Discussion
Replies: 6
Views: 102

Re: Connect to Child Event

Hello, I want to mention that we already define a macro in C++ for attached events to be used in ConnectEvent: bool ConnectEvent(BaseComponent* source, const char* event, const char* handler) override { NS_CONNECT_ATTACHED_EVENT(TreeViewItem, Expanded, OnTreeViewExpanded); return false; } And for C#...