What is the recommended way to reuse UMG Styles?

Hi Wes,

I basically have a “main widget” with 3 checkmarks and then a sub widget with another one. The sub widget gets added about 16 times to the main widget though. My current workaround is to use “Get Style” the style of one of my checkboxes and apply it with “Set Style” to the others. In the sub widgets I just grab the variable from it’s parent and apply it to my checkbox there. That seems to work fine so far.

About the “checkbox widget” you were talking about.
With that you mean a normal widget where I place a checkbox and then place the new “checkbox widget” inside of my other ones?
I tried that and I miss the “OnCheckStateChanged” functionality. I guess it’d be possible to cast it over, but with that I’m worried about the performance impact of things. Does it have a noticable impact to place widgets inside of widgets instead of building them up inside of them? And how about casting stuff back and forth between them?

Thanks for your replies.