Because I needed to split some functionality between classes, I\'ve arrived at the following situation
xaml code
You can't yet (in WPF Version 4.5 you can bind to a static property). But you can create your property in App.xaml.cs
public partial class App : Application { public bool MyBoolean { get; set; } }
and bind from everywhere.