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.
99 lines
3.5 KiB
99 lines
3.5 KiB
/*************************************************************************************
|
|
|
|
Extended WPF Toolkit
|
|
|
|
Copyright (C) 2007-2013 Xceed Software Inc.
|
|
|
|
This program is provided to you under the terms of the Microsoft Public
|
|
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
|
|
|
|
For more features, controls, and fast professional support,
|
|
pick up the Plus Edition at http://xceed.com/wpf_toolkit
|
|
|
|
Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
|
|
|
|
***********************************************************************************/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Controls;
|
|
using System.Collections.ObjectModel;
|
|
using Xceed.Wpf.AvalonDock.Layout;
|
|
using System.Windows;
|
|
|
|
namespace Xceed.Wpf.AvalonDock.Controls
|
|
{
|
|
public class LayoutAnchorGroupControl : Control, ILayoutControl
|
|
{
|
|
static LayoutAnchorGroupControl()
|
|
{
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(LayoutAnchorGroupControl), new FrameworkPropertyMetadata(typeof(LayoutAnchorGroupControl)));
|
|
}
|
|
|
|
|
|
internal LayoutAnchorGroupControl(LayoutAnchorGroup model)
|
|
{
|
|
_model = model;
|
|
CreateChildrenViews();
|
|
|
|
_model.Children.CollectionChanged += (s, e) => OnModelChildrenCollectionChanged(e);
|
|
}
|
|
|
|
private void CreateChildrenViews()
|
|
{
|
|
var manager = _model.Root.Manager;
|
|
foreach (var childModel in _model.Children)
|
|
{
|
|
_childViews.Add(new LayoutAnchorControl(childModel) { Template = manager.AnchorTemplate });
|
|
}
|
|
}
|
|
|
|
private void OnModelChildrenCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
|
|
{
|
|
if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Remove ||
|
|
e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Replace)
|
|
{
|
|
if (e.OldItems != null)
|
|
{
|
|
{
|
|
foreach (var childModel in e.OldItems)
|
|
_childViews.Remove(_childViews.First(cv => cv.Model == childModel));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Reset)
|
|
_childViews.Clear();
|
|
|
|
if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Add ||
|
|
e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Replace)
|
|
{
|
|
if (e.NewItems != null)
|
|
{
|
|
var manager = _model.Root.Manager;
|
|
int insertIndex = e.NewStartingIndex;
|
|
foreach (LayoutAnchorable childModel in e.NewItems)
|
|
{
|
|
_childViews.Insert(insertIndex++, new LayoutAnchorControl(childModel) { Template = manager.AnchorTemplate });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ObservableCollection<LayoutAnchorControl> _childViews = new ObservableCollection<LayoutAnchorControl>();
|
|
|
|
public ObservableCollection<LayoutAnchorControl> Children
|
|
{
|
|
get { return _childViews; }
|
|
}
|
|
|
|
|
|
LayoutAnchorGroup _model;
|
|
public ILayoutElement Model
|
|
{
|
|
get { return _model; }
|
|
}
|
|
}
|
|
}
|
|
|