Stuart.EditGroup.EditGroup C# (CSharp) 메소드

EditGroup() 공개 메소드

public EditGroup ( Photo parent ) : System
parent Photo
리턴 System
        public EditGroup(Photo parent)
        {
            Parent = parent;

            Effects.CollectionChanged += (sender, e) => NotifyCollectionChanged(sender, e, "Effects");

            Effects.Add(new Effect(this));
        }