ビュー モデルを使用して C# で簡単なアプリケーションを作成しました。通常は、ウィンドウまたはユーザー コントロールのデータ コンテキストでビュー モデルを宣言してロードする必要があります。問題は、ビジュアルスタジオでアプリケーションが開かれるたびに読み込まれることです。
アプリケーションの実行中にウィンドウがロードされたときにロードしたい。
<Window x:Class="GraphApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ViewModel="clr-namespace:GraphApp"
Title="MainWindow" Height="350" Width="525">
<Window.DataContext>
<!-- Insert Model view Here. I want it to load when the window is running, not when I have it opened in visual studio.-->
</Window.DataContext>
これは可能ですか?