Hello!
When I touch the panel, I want to generate only the child events, not the events that exist in the parent panel. Is there a way to turn off JavaScript event bubbling in fuse?
<DockPanel Padding="5,0" Clicked="{a}">
<Circle Dock="Left" Width="32" Height="32" Clicked="{b}">
<ImageFill Url="{image}" WrapMode="ClampToEdge"/>
<Stroke Width="0.1" Color="Purple"/>
</Circle>
<BasicText Dock="Left" Value="{username}" Alignment="CenterLeft" FontSize="10" Margin="0,5,0,0" />
</DockPanel>