csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.4 KiB
79 lines
2.4 KiB
// -----------------------------------------------------------------------
|
|
// <copyright file="Panel.cs" company="Steven Kirk">
|
|
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace Perspex.Controls
|
|
{
|
|
using System;
|
|
using System.Collections.Specialized;
|
|
using System.Linq;
|
|
|
|
/// <summary>
|
|
/// Base class for controls that can contain multiple children.
|
|
/// </summary>
|
|
public class Panel : Control
|
|
{
|
|
private Controls children;
|
|
|
|
public Controls Children
|
|
{
|
|
get
|
|
{
|
|
if (this.children == null)
|
|
{
|
|
this.children = new Controls();
|
|
this.children.CollectionChanged += this.ChildrenChanged;
|
|
}
|
|
|
|
return this.children;
|
|
}
|
|
|
|
set
|
|
{
|
|
Contract.Requires<ArgumentNullException>(value != null);
|
|
|
|
if (this.children != value)
|
|
{
|
|
if (this.children != null)
|
|
{
|
|
this.children.CollectionChanged -= this.ChildrenChanged;
|
|
}
|
|
|
|
this.children = value;
|
|
this.ClearVisualChildren();
|
|
|
|
if (this.children != null)
|
|
{
|
|
this.children.CollectionChanged += this.ChildrenChanged;
|
|
this.AddVisualChildren(value);
|
|
this.InvalidateMeasure();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void ChildrenChanged(object sender, NotifyCollectionChangedEventArgs e)
|
|
{
|
|
// TODO: Handle Move and Replace.
|
|
switch (e.Action)
|
|
{
|
|
case NotifyCollectionChangedAction.Add:
|
|
this.AddVisualChildren(e.NewItems.OfType<Visual>());
|
|
break;
|
|
|
|
case NotifyCollectionChangedAction.Remove:
|
|
this.RemoveVisualChildren(e.OldItems.OfType<Visual>());
|
|
break;
|
|
|
|
case NotifyCollectionChangedAction.Reset:
|
|
this.ClearVisualChildren();
|
|
this.AddVisualChildren(this.children);
|
|
break;
|
|
}
|
|
|
|
this.InvalidateMeasure();
|
|
}
|
|
}
|
|
}
|
|
|