コード例 #1
0
        void OnDescendantRemoved(Element child)
        {
            DescendantRemoved?.Invoke(this, new ElementEventArgs(child));

            if (RealParent != null)
            {
                RealParent.OnDescendantRemoved(child);
            }
        }
コード例 #2
0
ファイル: Element.cs プロジェクト: typehm/Xamarin.Forms
 void OnDescendantRemoved(Element child)
 {
     DescendantRemoved?.Invoke(this, new ElementEventArgs(child));
     RealParent?.OnDescendantRemoved(child);
 }