示例#1
0
 protected void OnStyleChanged(IShowedClass source, string propertyName)
 {
     StyleChanged?.Invoke(this, new StyleChangedEventArgs(source, propertyName));
 }
示例#2
0
 public StyleChangedEventArgs(IShowedClass source, string propertyName)
 {
     Source       = source;
     PropertyName = propertyName;
 }
示例#3
0
 void IShowedClass.OnStyleChanged(IShowedClass source, string propertyName)
 {
     OnStyleChanged(source, propertyName);
 }