예제 #1
0
        protected void OnAttributeChanged(AttributeEventArgs args)
        {
            var handler = AttributeChanged;

            handler?.Invoke(this, args);
        }
예제 #2
0
파일: SvgElement.cs 프로젝트: thedeveus/SVG
 //dispatch attribute event
 void Attributes_AttributeChanged(object sender, AttributeEventArgs e)
 {
     OnAttributeChanged(e);
 }
예제 #3
0
파일: SvgElement.cs 프로젝트: carbon/SVG
 protected void OnAttributeChanged(AttributeEventArgs args)
 {
     AttributeChanged?.Invoke(this, args);
 }