Stuart.EditGroup.EditGroup C# (CSharp) Method

EditGroup() public method

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

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

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