Mercurial > silverbladetech
view MetroWpf/MetroWpf.Framework/WpfApplication.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +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(); } } }