Hi @carson.zoom, I’m also experiencing issues with custom UI with the C# wrapper. Here’s my code:
var ui = CZoomSDKeDotNetWrap.Instance.GetCustomizedUIMgrWrap();
var container = ui.CreateVideoContainer(handle, bounds);
var video = container.CreateVideoElement(VideoRenderElementType.VideoRenderElement_ACTIVE);
container.Show();
With this code, I get a plain black area where the video should be, and people on the call can hear me - but I don’t see any video or Zoom UI elements at all. If I add the line:
video.Show();
I get a null reference exception with no helpful details. Am I missing something, or should I wait for the fix?