Xceed Toolkit Plus for WPF v5.1 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
    MemberValueDescription
    Auto0ViewStack 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.
    Default1Zoombox 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.
    Disabled2ViewStack 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.
    Manual3ViewStack 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

    Supported Frameworks

    .NET: net5.0, net5.0-windows, net6.0, net6.0-macos, net6.0-windows, net7.0, net7.0-macos, net7.0-windows, net8.0, net8.0-browser, net8.0-macos, net8.0-windows, net9.0, net9.0-browser, net9.0-macos, net9.0-windows, net10.0, net10.0-browser, net10.0-macos, net10.0-windows.

    .NET Framework: net40, net403, net45, net451, net452, net46, net461, net462, net463, net47, net471, net472, net48, net481.

    See Also