示例#1
0
        public void Add(UIElement element, string title, AddingDirections direction)
        {
            DockingWindow window = new DockingWindow();

            window.Title   = title + (turn++).ToString();
            window.Content = element;
            Add(window, direction);
        }
示例#2
0
 public void Add(DockingWindow window, AddingDirections direction)
 {
     MainPlaceHolder.AddWindow(window, direction);
 }