KinectWithVRServer.MainWindow.MainWindow C# (CSharp) Method

MainWindow() public method

public MainWindow ( bool isVerbose, bool isAutoStart, AvaliableDLLs dlls, string startSettings = "" ) : System
isVerbose bool
isAutoStart bool
dlls AvaliableDLLs
startSettings string
return System
        public MainWindow(bool isVerbose, bool isAutoStart, AvaliableDLLs dlls, string startSettings = "")
        {
            verbose = isVerbose;
            startOnLaunch = isAutoStart;
            startupFile = startSettings;
            avaliableDLLs = dlls;

            InitializeComponent();

            //Set the initial state of the verbose option checkbox
            verboseOutputCheckbox.IsChecked = isVerbose;
        }
MainWindow