Inheritance: IWin32Window
コード例 #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;
 }
コード例 #2
0
ファイル: QvxCommandClient.cs プロジェクト: TonyWu/QvxLib
        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);
        }
コード例 #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);
        }
コード例 #4
0
ファイル: QvxCommandClient.cs プロジェクト: TonyWu/QvxLib
 public QvxCommandClient(string PipeName, QvxWindow QVWindow)
 {
     ConstructorHelper(PipeName, QVWindow);
 }
コード例 #5
0
ファイル: QvxCommandClient.cs プロジェクト: TonyWu/QvxLib
 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;
 }
コード例 #6
0
 public QvxCommandClient(string PipeName, QvxWindow QVWindow)
 {
     ConstructorHelper(PipeName, QVWindow);
 }