Nevron Open Vision Documentation
Nevron.Nov.Windows.Wpf Namespace / NNovApplicationInstaller Class
Members


In This Topic
    NNovApplicationInstaller Class
    In This Topic
    The WPF Application installer. Make sure to call its Install() method in your WPF application Main() function prior to using Nevron Open Vision Products. For example: static class Program { [STAThread] static void Main() { // install Nevron Open Vision for WPF NWPFApplicationInstaller.Install(); // show the main form try { Application app = new Application(); app.Run(new Nevron.Examples.Wpf.NMainWindow()); } catch (Exception ex) { System.Diagnostics.NDebug.Assert(false, ex.Message, ex.StackTrace); } } }
    Object Model
    NNovApplicationInstaller Class
    Syntax
    'Declaration
     
    
    Public MustInherit NotInheritable Class NNovApplicationInstaller 
    'Usage
     
    
    Dim instance As NNovApplicationInstaller
    public static class NNovApplicationInstaller 
    Inheritance Hierarchy

    System.Object
       Nevron.Nov.Windows.Wpf.NNovApplicationInstaller

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also