Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit Namespace / MagnifierManager Class
Members Example


In This Topic
    MagnifierManager Class
    In This Topic
    Represents a manager class for the Magnifier.
    Syntax
    'Declaration
     
    <TypeDescriptionProviderAttribute(MS.Internal.ComponentModel.DependencyObjectProvider)>
    <NameScopePropertyAttribute("NameScope", System.Windows.NameScope)>
    Public Class MagnifierManager 
       Inherits System.Windows.DependencyObject
    'Usage
     
    Dim instance As MagnifierManager
    [TypeDescriptionProvider(MS.Internal.ComponentModel.DependencyObjectProvider)]
    [NameScopeProperty("NameScope", System.Windows.NameScope)]
    public class MagnifierManager : System.Windows.DependencyObject 
    Remarks
    The Magnifier can be added to any element that is of type UIElement. This is done by using the MagnifierManager. Simply set the MagnifierManager.Magnifier property to the toolkit's Magnifier instance.
    Example
    The following example adds a Magnifier to the parent grid of a Window.
    <Window x:Class="WPFToolkit.Extended.Samples.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:extToolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit/extended"
            Title="MainWindow" Height="350" Width="525" >
        <Grid>
            <xctk:MagnifierManager.Magnifier>
                <xctk:Magnifier Radius="100" ZoomFactor=".4" />
            </xctk:MagnifierManager.Magnifier>
            <RichTextBox />
        </Grid>
    </Window>
    Inheritance Hierarchy

    System.Object
       System.Windows.Threading.DispatcherObject
          System.Windows.DependencyObject
             Xceed.Wpf.Toolkit.MagnifierManager

    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