It seems it is very common to pass a static value to the ConverterParameter like the xaml example below.
Is there way to pass the parent control Tag property to it?
<StackPanel Margin="{StaticResource XSmallTopMargin}" Tag="abc">
<RadioButton GroupName="AppTheme" dt:DesignTime.Content="Light"
Checked="ThemeChanged_CheckedAsync"
IsChecked="{x:Bind ElementTheme, Converter={StaticResource EnumToBooleanConverter}, ConverterParameter=Light, Mode=OneWay}">
</RadioButton>
</StackPanel>