using System; using System.Collections.Generic; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace DockingLibrary { /// <summary> /// Rappresents a content embeddable in a dockable pane or in a documents pane /// </summary> public class DockableContent : ManagedContent { public DockableContent(DockManager manager) : base(manager) { } public DockableContent() { } /// <summary> /// Show this content /// </summary> /// <remarks>Show this content in a dockable pane. If no pane was previuosly created, it creates a new one with default right dock. </remarks> public override void Show() { if (ContainerPane != null) { ContainerPane.Show(this); //ContainerPane.Show(); } else Show(Dock.Right); } /// <summary> /// Show this content /// </summary> /// <remarks>Show this content in a dockable pane. If no pane was previuosly created, it creates a new one with passed initial dock. </remarks> public void Show(Dock dock) { if (ContainerPane == null) { _containerPane = new DockablePane(DockManager, dock); //_containerPane.DockManager = DockManager; _containerPane.Add(this); _containerPane.Show(); //DockManager.Add(this); DockManager.Add(_containerPane as DockablePane); } else { ContainerPane.Show(this); ContainerPane.Show(); } } /// <summary> /// Show content into default documents pane /// </summary> public void ShowAsDocument() { if (ContainerPane == null) _containerPane = DockManager.AddDocument(this); ContainerPane.Show(this); } /// <summary> /// Hides content from container pane /// </summary> /// <remarks>If container pane doesn't contain any more content, it is automaticly hidden.</remarks> public virtual new void Hide() { ContainerPane.Hide(this); } public virtual void ChangeDock(Dock dock) { } public virtual void Float() { } public virtual void AutoHide() { } /// <summary> /// Set/get content title whish is shown at top of dockable panes and in tab items /// </summary> public new string Title { get { return base.Title; } set { base.Title = value; if (ContainerPane != null) ContainerPane.RefreshTitle(); } } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers