INotifyPropertyChanged
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(INotifyPropertyChanged);
*目次 [#d8940e75]
#contents
*参考情報 [#f172909d]
-[[silverlight - What's the concept behind INotifyPropert...
*定義 [#x1dc794c]
#pre{{
namespace System.ComponentModel
{
// 概要:
// プロパティ値が変更されたことをクライアントに通...
public interface INotifyPropertyChanged
{
// 概要:
// プロパティ値が変更されたときに発生します。
event PropertyChangedEventHandler PropertyChanged;
}
}
}}
*使用方法 [#k6bd252d]
-WPFでいうところのモデルに実装する。
-モデルクラスのPropertyChangedはBindingされたときにListBo...
*典型的な実装 [#c5fa41f0]
-クラスにINotifyPropertyChangedインターフェイスをimplemen...
-下記NotifyPropertyChanged()のようなメソッドを作る(名前は...
-変更を通知したいプロパティのsetメソッドの実装を変更し、...
#pre{{
public class DemoCustomer : INotifyPropertyChanged
{
private void NotifyPropertyChanged(String info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEven...
}
}
private string companyNameValue = String.Empty;
public string CompanyName
{
get
{
return this.companyNameValue;
}
set
{
if (value != this.companyNameValue)
{
this.companyNameValue = value;
NotifyPropertyChanged("CompanyName");
}
}
}
}}
終了行:
&tag(INotifyPropertyChanged);
*目次 [#d8940e75]
#contents
*参考情報 [#f172909d]
-[[silverlight - What's the concept behind INotifyPropert...
*定義 [#x1dc794c]
#pre{{
namespace System.ComponentModel
{
// 概要:
// プロパティ値が変更されたことをクライアントに通...
public interface INotifyPropertyChanged
{
// 概要:
// プロパティ値が変更されたときに発生します。
event PropertyChangedEventHandler PropertyChanged;
}
}
}}
*使用方法 [#k6bd252d]
-WPFでいうところのモデルに実装する。
-モデルクラスのPropertyChangedはBindingされたときにListBo...
*典型的な実装 [#c5fa41f0]
-クラスにINotifyPropertyChangedインターフェイスをimplemen...
-下記NotifyPropertyChanged()のようなメソッドを作る(名前は...
-変更を通知したいプロパティのsetメソッドの実装を変更し、...
#pre{{
public class DemoCustomer : INotifyPropertyChanged
{
private void NotifyPropertyChanged(String info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEven...
}
}
private string companyNameValue = String.Empty;
public string CompanyName
{
get
{
return this.companyNameValue;
}
set
{
if (value != this.companyNameValue)
{
this.companyNameValue = value;
NotifyPropertyChanged("CompanyName");
}
}
}
}}
ページ名: