Search found 3 matches

by DominikRuta
15 May 2024, 13:19
Forum: General Discussion
Replies: 3
Views: 325

Re: LocTable propagation to ContentControl's content via TemplateBinding

Hey, same apologize for the late response.

I've tried your solution and it works! Thanks a lot!
by DominikRuta
11 Apr 2024, 14:38
Forum: General Discussion
Replies: 3
Views: 325

LocTable propagation to ContentControl's content via TemplateBinding

Hello, in Unreal project, I have a problem with propagating LocTable to ContentControl's content. Am I'm missing something or using bad approach? I have created custom ContentControl called MainLayout which is suppose to represent main screen layout. This control has three dependency properties - He...
by DominikRuta
19 Dec 2023, 15:39
Forum: General Discussion
Replies: 2
Views: 4279

Handling UIElement events in UE5

Hello, I have a simple question. Is there a way how to listen on UIElement events and handle them in UE5 c++ class while still getting event arguments like this? void UMyUnrealView::OnMouseWheel(BaseComponent* component, const Noesis::MouseWheelEventArgs& e) { // Do some stuff return; } Register...