Search found 4 matches
- 01 Oct 2024, 12:47
- Forum: General Discussion
- Replies: 1
- Views: 63
[UE5] Double-click needed to select item in Listbox. Single-click does not work.
Hello, I have the following Listbox control with some items, where after I select item, I want it to be visually visible. <ListBox> <ListBoxItem>Item 1</ListBoxItem> <ListBoxItem>Item 2</ListBoxItem> <ListBoxItem>Item 3</ListBoxItem> <ListBoxItem>Item 4</ListBoxItem> <ListBox.Style> <Style TargetTyp...
- 15 May 2024, 13:19
- Forum: General Discussion
- Replies: 3
- Views: 1642
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!
I've tried your solution and it works! Thanks a lot!
- 11 Apr 2024, 14:38
- Forum: General Discussion
- Replies: 3
- Views: 1642
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...
- 19 Dec 2023, 15:39
- Forum: General Discussion
- Replies: 2
- Views: 4652
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...