How to hide invite button in C# wrapper

Description
I’ve created a WPF application with zoom-c-sharp-wrapper and i want to hide the invite button

Which version?
v4.4.55968.0904

Hi ajay7464,

Thanks for using Zoom SDK. You can use IMeetingConfigurationDotNetWrap.EnableInviteButtonOnMeetingUI to hide the invite button:https://github.com/zoom/zoom-c-sharp-wrapper/blob/5500fbaac55b10068f1f05b166755048a8ca2034/zoom_sdk_c_sharp_wrap/meeting_configuration_dotnet_wrap.cpp#L177

Thanks!

Thanks!

Is there any option to hide participants list

Hi,

Thanks for the reply. We do not have the option to hide the participant list, but you can customize the event when the participant list is clicked:

Thanks!

1 Like

I’ve used ZOOM_SDK_DOTNET_WRAP.CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().GetUIController().Add_CB_onParticipantListBtnClicked(onParticipantListBtnClicked);

to assign a new event onParticipantListBtnClicked but didn’t got any success

Hi ajay7464,

Thanks for the reply. Pardon that I did not mention clear in my previous reply. You need to implement the above 2 methods in the following order:

  1. Implement the RedirectClickParticipantListBTNEvent method to redirect the event when a user clicks the participant button.
  2. Once you get the event, you can implement the callback onParticipantListBtnClicked to redefine the functionalities behind this button, and to achieve what you want.

So in your case, if you have not implemented the RedirectClickParticipantListBTNEvent, you won’t have any responses in the onParticipantListBtnClicked callback.

Hope this helps. Thanks!

1 Like

It works.

Thanks for your support.

One more thing.

Is there any way to hide these options.

Hi ajay7464,

Thanks for the reply. We do not have the option to hide the gallery view. You may refer to the interfaces in https://github.com/zoom/zoom-sdk-electron/blob/master/lib/zoom_meeting_ui_ctrl.js for the options that we are offering.

Thanks!

1 Like