App.xaml 638 B

12345678910111213
  1. <Application x:Class="MuchInfo.Chart.App.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:vm="clr-namespace:MuchInfo.Chart.App.ViewModels"
  7. StartupUri="MainWindow.xaml"
  8. mc:Ignorable="d">
  9. <Application.Resources>
  10. <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
  11. </Application.Resources>
  12. </Application>