次のフォームで繰り返されるこの WPF があります。
<WrapPanel local:RadioChecker.IsChecked="False">
<RadioButton Content="Yes" Height="16" GroupName = "rbgSeizure" Name="rbSeizureYes"
local:RadioChecker.IsChecked="{Binding RelativeSource={RelativeSource Self}, Path=IsChecked}" />
<RadioButton Content="No" Height="16" GroupName = "rbgSeizure" Name="rbSeizureNo"
local:RadioChecker.IsChecked="{Binding RelativeSource={RelativeSource Self}, Path=IsChecked}" />
</WrapPanel>
local:...
上記をコピーして各コントロールに貼り付けることなく、上記のように各 WrapPanel と各 RadioButton を同じ方法で設定するにはどうすればよいですか?
次のようなコード ビハインドで各タイプ コントロールを取得できます。
GetLogicalChildCollection<RadioButton>(mainPanel)
.ForEach(rb =>
{
Binding binding = new Binding();
//binding.Source
});
しかし、バインディングの設定方法やカスタム添付プロパティをコントロールに添付する方法がわかりません。