Browse By Tags

  • XamDataGrid Broken Child Band's Indentation On All Unselected Tabs

    Hello,

    I am using XamDataGrid inside XamDockManager's DockManagerPanel, I've setup it in a way that there are two Tabs available for User.

    Both grids which are shown on the image are identical from the code and style perspective.

    Issue is that for…

  • Allow for tabs on the XamDockManager DocumentContentHost to be inserted at the end instead of only at the beginning

    It would be great if we could have an option to insert a document at the end of the DocumentContentHost instead of it always being at the beginning.  This could be achieved with either an optional parameter or an overload of the AddDocument method of the…

  • Allow temporary maximizing of xamDockManager panes

    Syncfusion has a really nice feature on their docking manager which allows you to temporarily maximise any given pane, without affecting the currently loaded/saved layout of the actual dock manager. It would be great to have a similar feature on the xamDockManager…

  • How to set VerticalAlignment for ToolWindowCloseButtonStyle and the ToolWindowCaption?

    Hi,

    In my application i am using xamDockManager, where there a content pane which can float. Once we drag and make it Floating window, its Close button and Header caption looks like their VerticalAlignment is set to "Bottom"

    In the picture below…

  • How to set Scroll Viewer Styling in Floating Content Pane?

    Hi,

    In my application i am using xamDockManager, where there a content pane which can float. Once we drag and make it Floating window, it's scroll bar color changes to default grey color, We want to change this default grey color to NavyBlue.

    As suggesred…

  • XamDockManager floating window custom style

    First of All, I want to mention I am Referring this Post and asking further questions. And applying custom style on XamDockManager floating window.

    1. If we resize the Floating Window, the outer border color is not changing. Which style we can use for this…
  • ContentPane floating mode close button functionality

    We are using xamDockManager and we want to implement close button functionality for content pane (Floating Mode) in a way if we click on close button then it should be dock as per the inital position.

    In the below scrreenshots, we have performed Step…

  • How to set Theme for Floating Content Pane

    I have a content pane on which i have a theme applied, the content pane can be docked anywhere on the screen and can make it as a floating window.

    When i am making my content pane a floating windows, the theme gets lost.

    I wanted my theme to remain when…

  • AllowMaximize/Minimize for Docked pane

    There is AllowMaximizeFloatingWindows and AllowMinimizeFloatingWindows for Floating Pane in XamDockManager.

    AllowMaximizeFloatingWindows Property - Infragistics WPF  Help

    I want same function for Docked Pane like AllowMaximize for Windows Form.  

    AllowMaximize…

  • How to remove header of XamDockManager:SplitPane?

    Hello

    I am having trouble removing the default header that is implemented with a SplitPane.

    My goal is to remove the header so I can implement my own styling to it as shown below (Top is my styling applied and bottom is default):

    My code is as follows…

  • WPF XamDockManager Floating Panes and XamRibbon Menu Integration

    Dealing with menus and floating windows is a real pain in the butt!  If you have written any type of WPF MDI (Multi Document Interface) application you know exactly what I am talking about.  Focus management in WPF is a real pain in itself.  Having to worry…

  • XamDockManager - Data Binding ContentPanes with MVVM

    If you are using the Infragistics xamDockManager control and using MVVM to compose your views, then you have probably asked yourself the question, “How do I data bind a collection of objects, which represent my Views, from my ViewModel to various areas…

  • XamDockManager–An Updated Prism Region Adapter

    UPDATE: See the new version of the XamDockManager Prism Region Adapter

    Last September, I wrote what has become a very popular Prism region adapter for the Infragistics XamDockManager control.  As pointed out in the post, this original XamDockManager Prism…

  • XamDockManager–A Prism RegionAdapter

    Writing a generic custom Prism RegionAdapter for a complex control is sometimes difficult, because custom RegionAdapters are custom.  They normally have some specific logic built into them that make them fit into a particular application just right.  You…

  • XamDockManager -- Save and Load Layouts

    Save Layout

    using System.IO;
    ...
    using (FileStream fs = new FileStream("layout.xml", FileMode.Create, FileAccess.Write))
    {
        this.xamDockManager1.SaveLayout(fs);
    }
    ...
    

    Load Layout

    using System.IO;
    ...
    //Load the layout…