現在、ユーザー コントロールの背景を次のように定義しています。
<UserControl.Background>
<ImageBrush ImageSource="{DynamicResource LeftMenuBackgroundImage}" />
</UserControl.Background>
これをコード ビハインドに移動するにはどうすればよいですか。
疑似コード:
StackPanel sp = new StackPanel();
sp.Background = new ImageBrush(DynamicResource.GetResourceName("LeftMenuBackgroundImage"));