view MetroWpf/MetroWpf.Framework/WpfApplication.cs @ 39:4b8b38d17d24 MetroWPF CTP v0.1

Quick tidy up for ctp 0.1 release
author adminsh@apollo
date Tue, 03 Apr 2012 15:33:18 +0100
parents 060f02cd4591
children
line wrap: on
line source

using System;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using System.Windows.Threading;
using MetroWpf.Framework.Interfaces;
using System.Windows.Media.Imaging;

namespace MetroWpf.Framework
{
  public class WpfApplication : IWpfApplication
  {
    private Dispatcher _dispatcher;
    public TaskScheduler UiTaskScheduler { get; private set; }

    public BitmapSource ApplicationIcon { get; private set; }
    public string ApplicationTitle { get { return "Metro WPF"; } }

    public void Initialize()
    {
      _dispatcher = Application.Current.Dispatcher;
      UiTaskScheduler = TaskScheduler.FromCurrentSynchronizationContext();

      ApplicationIcon = new BitmapImage(
       new Uri("../Presentation/logo.ico", UriKind.Relative));
    }

    public void Invoke(Action action)
    {
      _dispatcher.Invoke(action);
    }

    public void RefreshCommands()
    {
      CommandManager.InvalidateRequerySuggested();
    }
  }
}