KinectWithVRServer.MainWindow.MainWindow C# (CSharp) 메소드

MainWindow() 공개 메소드

public MainWindow ( bool isVerbose, bool isAutoStart, AvaliableDLLs dlls, string startSettings = "" ) : System
isVerbose bool
isAutoStart bool
dlls AvaliableDLLs
startSettings string
리턴 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