It's nothing really that complicated. When you attach DynamicData to something, it will try to change that element dynamically. But say you wanted the DynamicData to only change something's Color and Text, but not it's visibility or anything else... you'd need to use a DynamicDataFilter.
The filter is a bitfield converted to a four character hex string.
0x0000 being 0000000000000000
0xFFFF being 1111111111111111
Essentially it's the same as having sixteen booleans.
Color is 0x0400 being 0000010000000000
Text is 0x0002 being 0000000000000010
Combined is 0x0402 being 0000010000000010
The thing is, 0x1000 is not required to handle an OnShow event from an element, so I have no idea what an "Event Trigger" is in context of DynamicData.
|