我该如何设置会议窗口第一次出现的位置?

根据SDK中,需要设置 

meeting.GetMeetingConfiguration().SetMeetingUIPos(wnd);

可是我将它设置成了我想要的位置

为什么没有起到作用呢。。?

 var meeting = CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap();

Although I speak Chinese too, I have to answer your question in English.

  1. This function must be called before you start/join a meeting because it is used for inintialization.

  2. Here is a sample code in C++. Hope it is useful for you.

ZOOM_SDK_NAMESPACE::WndPosition wndPos;
wndPos.left = 200; //modify it to anywhere u want
wndPos.top = 500; //modify it to anywhere u want
m_pMeetingService->GetMeetingConfiguration()->SetFloatVideoPos(wndPos);
if (m_pMeetingService->Start(startParam) != ZOOM_SDK_NAMESPACE::SDKERR_SUCCESS)
  return false;

  1. Make sure you are using the latest SDK release version. Get it from https://github.com/zoom/

It should work well. And thanks for using Zoom SDK!

Regards,

Wilmer