WPF 원격 데스크톱 호출

893 단어 SystemdllWPF
 AxMsTscAxNotSafeForScripting axmstsc = new AxMsTscAxNotSafeForScripting();
            WindowsFormsHost wfh = new WindowsFormsHost();
            axmstsc.Height =(int) this.ActualHeight;
            axmstsc.Width  = (int)this.ActualWidth ;
            wfh.Child = axmstsc;
            sp.Children.Add(wfh);
            axmstsc.Server = "10.112.19.156";
            axmstsc.UserName=@"dev\dcsadmin";
            IMsTscNonScriptable secured = (IMsTscNonScriptable)axmstsc.GetOcx();
            secured.ClearTextPassword ="spdb1234";
            axmstsc.Connect();

AxMsTscAxNotSafeForScripting은 원격 데스크톱의ActiveX Control입니다. AxMSTSClib을 참조해야 합니다.dll 및 MSTSClib.dll, 이 두 DLL은 VS 명령줄에서 AXIMP를 사용할 수 있습니다.EXE mstscax.dll (System32 디렉터리 아래에 있는 원격 데스크톱ActiveX 컨트롤) 명령을 가져옵니다. 연결이 없을 때 끼워 넣은 컨트롤은 공백을 표시하고, 연결이 원격 컴퓨터에 들어갈 때 데스크톱을 표시합니다.

좋은 웹페이지 즐겨찾기