コード例 #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);
 }