Ejemplo n.º 1
0
        /// <summary>
        /// Constructor for main xaml window.
        /// </summary>
        public MainWindow()
        {
            // Initialize the base window
            InitializeComponent();

            // Initialize the view model
            model       = new ScoreVM();
            DataContext = model;
            model.loadStartData();

            //looks more professional starting with a new slate.
            OpenScoreCreationWindow();

            // Set viewer properties
        }