protected void OnStyleChanged(IShowedClass source, string propertyName) { StyleChanged?.Invoke(this, new StyleChangedEventArgs(source, propertyName)); }
public StyleChangedEventArgs(IShowedClass source, string propertyName) { Source = source; PropertyName = propertyName; }
void IShowedClass.OnStyleChanged(IShowedClass source, string propertyName) { OnStyleChanged(source, propertyName); }