xml ファイルの値に基づいて組織のツリーを描画するアプリケーションを作成しました。
xaml ファイルは次のようになります。
<Window.Resources>
<!-- The Org Chart Data-->
<XmlDataProvider x:Key="organization" Source="model.xml" />
<SolidColorBrush x:Key="ListBorder" Color="#FF7F9DB9"/>
<!-- The Style for Nodes -->
<Style TargetType="{x:Type draw:Node}">
<Setter Property="OverridesDefaultStyle" Value="true"/>
<Setter Property="Template">
---------------------------------------------------------
openfiledialog (ボタン クリックなど) から xml ファイルを選択して、実行時にソースを変更できるようにしたいのですが、どうすればよいですか?