SimpleWindow
载入中...
搜索中...
未找到
INotifyPropertyChanged.h
1
#pragma once
2
3
#include "Reflection.h"
4
5
namespace
sw
6
{
7
class
INotifyPropertyChanged;
// 向前声明
8
12
using
PropertyChangedEventHandler = Action<INotifyPropertyChanged &, FieldId>;
13
17
class
INotifyPropertyChanged
18
{
19
public
:
23
PropertyChangedEventHandler
PropertyChanged
;
24
28
virtual
~INotifyPropertyChanged
() =
default
;
29
};
30
}
sw::Delegate
Definition
Delegate.h:21
sw::INotifyPropertyChanged
属性变更通知接口
Definition
INotifyPropertyChanged.h:18
sw::INotifyPropertyChanged::PropertyChanged
PropertyChangedEventHandler PropertyChanged
当属性值更改时触发的事件
Definition
INotifyPropertyChanged.h:23
sw::INotifyPropertyChanged::~INotifyPropertyChanged
virtual ~INotifyPropertyChanged()=default
默认析构函数
sw
inc
INotifyPropertyChanged.h
制作者
1.9.8