Inheritance: IWin32Window
Exemple #1
0
 private void ConstructorHelper(string PipeName, QvxWindow QVWindow)
 {
     thread = new Thread(new ThreadStart(QvxCommandWorker));
     thread.IsBackground = true;
     thread.Name         = "QvxCommandWorker";
     this.pipeName       = PipeName.Replace(@"\\.\pipe\", "");
     this.QVWindow       = QVWindow;
 }
Exemple #2
0
        public QvxCommandClient(string[] args)
        {
            if (args == null)
                throw new ArgumentNullException("args");

            if (args.Length < 2)
                throw new ArgumentException("args need at least two Items");

            var QVHwnd = new QvxWindow(Int32.Parse(args[0], NumberStyles.HexNumber));

            ConstructorHelper(args[1], QVWindow);
        }
Exemple #3
0
        public QvxCommandClient(string[] args)
        {
            if (args == null)
            {
                throw new ArgumentNullException("args");
            }

            if (args.Length < 2)
            {
                throw new ArgumentException("args need at least two Items");
            }

            var QVHwnd = new QvxWindow(Int32.Parse(args[0], NumberStyles.HexNumber));

            ConstructorHelper(args[1], QVWindow);
        }
Exemple #4
0
 public QvxCommandClient(string PipeName, QvxWindow QVWindow)
 {
     ConstructorHelper(PipeName, QVWindow);
 }
Exemple #5
0
 private void ConstructorHelper(string PipeName, QvxWindow QVWindow)
 {
     thread = new Thread(new ThreadStart(QvxCommandWorker));
     thread.IsBackground = true;
     thread.Name = "QvxCommandWorker";
     this.pipeName = PipeName.Replace(@"\\.\pipe\", "");
     this.QVWindow = QVWindow;
 }
Exemple #6
0
 public QvxCommandClient(string PipeName, QvxWindow QVWindow)
 {
     ConstructorHelper(PipeName, QVWindow);
 }