How to change windows tittle and pictures in the window c# wrapper

Description

I want to change all windows title pictures. Is it possible?

Please explore in detail if possible.

see the title image below,

image

I call this function with a valid parameter first before calling zoom InitSDK() but it can’t work.

string strPNGID = “G_LOGO_ZOOM.SVG”;
string appFolderPath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
string strFileName = appFolderPath + @“\classroom.png”;
ZOOM_SDK_DOTNET_WRAP.SDKError sdkerr = ZOOM_SDK_DOTNET_WRAP.CZoomSDKeDotNetWrap.Instance.RetrieveCustomizedResourceHelperWrap().AddCustomizedPictureResource(strPNGID, strFileName );

I was able to modify the above window’s icon and title using it, but I want to be able to change all of the window’s icons, such as chat, participant, and screen share.

image