Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit.Zoombox Namespace / ZoomboxViewStackMode Enumeration


In This Topic
    ZoomboxViewStackMode Enumeration
    In This Topic
    Identitifes the way the ViewStack of a Zoombox control is maintained.
    Syntax
    'Declaration
     
    Public Enum ZoomboxViewStackMode 
       Inherits System.Enum
    'Usage
     
    Dim instance As ZoomboxViewStackMode
    public enum ZoomboxViewStackMode : System.Enum 
    Members
    MemberDescription
    AutoViewStack is auto-generated based on user interaction. Each view selected by the user at runtime is added to the stack. Views may also be added and/or altered programmatically.
    DefaultZoombox control will select either Auto or Manual at runtime based on the value of the ViewStackSource property. If ViewStackSource is null, an Auto stack will be maintained. If ViewStackSource is not null, a Manual stack will be used and the views within the view stack will be generated based on the items in the ViewStackSource collection.
    DisabledViewStack is not maintained at all for the Zoombox. In this case, the ViewStack property of the Zoombox will return null and an attempt to add views within markup will result in an exception stating that the ViewStack property is readonly.
    ManualViewStack is supplied manually at design time or programmatically at runtime and does not change based on user interaction.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Wpf.Toolkit.Zoombox.ZoomboxViewStackMode

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also