DependencyObjectを継承できないオブジェクトがある、またはNotifyPropertyChangedを使用しているため、かなりの数のコントロールにバインドしているため、プロパティが変更されたときに各コントロールに移動したいそれがコードに値ですので、私が代わりに行くのそれは、コードの1行か2行でにバインドされていることすべてを、「再バインド」するXAMLを指示する方法がなければならないと思っています:WPF強制的に再バインドする
label1.Content = myObject.DontNotifyThis;
label2.Content = myObject.DontNotifyThisEither;
label3.Content = myObject.DontEvenThinkOfNotifyingThis;
label4.Content = myObject.NotSoFastPal;
ように、等々...
これは単純化しすぎている例:
XAML:
<Window x:Class="StackOverflowTests.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" x:Name="window1" Height="300" Width="300" Loaded="window1_Loaded">
<Grid x:Name="gridMain">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="{Binding Status}" ContentStringFormat="Today's weather: {0}" />
<Label Grid.Row="2" Content="{Binding Temperature}" ContentStringFormat="Today's temperature: {0}" />
<Label Grid.Row="1" Content="{Binding Humidity}" ContentStringFormat="Today's humidity: {0}" />
</Grid>
</Window>
のC#:
using System.Windows;
namespace StackOverflowTests
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : Window
{
Weather weather = new Weather("Cloudy", "60F", "25%");
public Window1()
{
InitializeComponent();
this.DataContext = weather;
}
private void window1_Loaded(object sender, RoutedEventArgs e)
{
weather.Status = "Sunny";
weather.Temperature = "80F";
weather.Humidity = "3%";
}
}
class Weather
{
public string Status { get; set; }
public string Temperature { get; set; }
public string Humidity { get; set; }
public Weather(string status, string temperature, string humidity)
{
this.Status = status;
this.Temperature = temperature;
this.Humidity = humidity;
}
}
}
私はそれを行う方法を見つけたが、それがすべてでエレガントではありません、と生憎、私はちょうど天気の新しいインスタンスへのDataContextを設定することはできません、それ(それがnullに設定され、変更されるのはそのためです):
private void window1_Loaded(object sender, RoutedEventArgs e)
{
weather.Status = "Sunny";
weather.Temperature = "80F";
weather.Humidity = "3%";
// bad way to do it
Weather w = (Weather)this.DataContext;
this.DataContext = null;
this.DataContext = w;
}
ありがとうございます!
興味:ここ
はそれを示して単純な例だ理由あなたはINPCを実装できませんか? –私たちのアプリでUndo/Redoを使用しています。INotifyPropertyChangingはオブジェクトの以前の状態をシリアル化し、INotifyPropertyChangedはオブジェクトを新しいXmlSerializedファイルに保存することを可能にします。しかし、私が変更する必要があるこれらの特定のプロパティは、オブジェクトの保存状態(フォント、色、背景、境界線を変更しない)またはユーザーが保存したいものを変更しません。 NotifyPropertyChanging /これらのプロパティで変更された場合、システムはオブジェクトが変更されたと考えますが、ユーザーには変更されていません。 これは私がそれを使うことができない理由です。 – Carlo
わかりましたが、それは私に欠陥のあるデザインのように思えます。あなたはINPCの一般的なプロパティ変更の通知として、そして元に戻す/やり直しを気にする状態の変化を追跡するもう1つのメカニズムを使う方が良いでしょう。しかし、あなたのデザインを変更するには遅すぎるかもしれないので、ポイントを取った。 –