あなたは、コンバータを使用します。ここにあなたのためのトリックを行うものがあります。
public class booleaninverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !(bool)value;
}
}
ので
<Button Content="Stop loading" IsEnabled="{Binding IsLoaded, Converter={StaticResource booleaninverter}" />
あなたは、静的あなたのApp.xaml内のリソース、または他のウィンドウ/制御リソースセクションを作ることができるようにあなたのXAMLを書き、それを使用します。もちろん、ローカルの名前空間宣言とそれ以外の宣言をする必要がありますが、これはあなたのために行われたほとんどの作業です。
<local:booleaninverter x:key="booleaninverter"/>
[このような質問を参照してください](http://stackoverflow.com/questions/1039636/how-to-bind-inverse-boolean-properties-in-wpf) – Nekresh