アプリケーション Pro SilverLight 5 とクライアントを移行しました。この更新の後、INotifyPropertyChanged を実装しても、テキスト ボックスはクライアント データを更新しません。
SILVERLIGHT 4 アプリケーションでも同じように機能します。詳細は通常、RaisePropertyChanged の後にタイムリーにテキスト ボックスに表示されます。
私のテキストボックスに従ってください:
<TextBox Width="43" MaxLength="4" slf:TextBoxFilterService.Filter="PositiveInteger"
IsEnabled="{Binding DadosServicoEnabled}" Margin="6,0" Text="{Binding
Path=HoraDataEntradaVeiculo, ValidatesOnDataErrors=True,Mode=TwoWay,
Converter={StaticResource HoraConverter}}"/>
プロパティをフォローする
public string _HoraDataEntradaVeiculo;
public string HoraDataEntradaVeiculo
{
get
{
return _HoraDataEntradaVeiculo;
}
set
{
_HoraDataEntradaVeiculo = value;
this.RaisePropertyChanged("HoraDataEntradaVeiculo");
}
}
バージョン5の更新で方法が変わったかどうか誰か教えてください??