Try two approaches:
<TextBlock Text="{Binding myAppProperty}" DataContext="{x:Static Application.Current}" . . . />
<TextBlock Text="{Binding myAppProperty, Source={x:Static Application.Current}}" . . . />
This assumes that App contains the corresponding property. A simple one is:
public string myAppProperty { get; set; } = "SomeText";