How can I share a powerpoint presentation on Lync SDK? (WPF application)
I'm trying to find a way to share my presentation on my WPF application based on Lync SDK. But so far, I couldn't found a way.
AutomationModailities
class only supports audio, video, text and file sharing. There are no Lync related buttons for sh开发者_StackOverflowaring presentation on Toolbox neither.
What I want to achieve is this, programmatically on the codebehind. Like when user clicks on a button created dynamically on my WPF application it will do the same effect as this;
Any help is appreciated! Thanks!
I don't think this is currently possible with the Lync SDK. As you dicovered yourself, there is no support for powerpoint sharing in AutomationModalities.
The other thing that makes me think the underlying API does not support this is that there are no Lync SDK UI controls that offer this functionality.
You could potentially do something by using a combination of Win32 calls and SendKeys to send keystrokes to the conversation window, to open the "Share/Powerpoint Presentation" menu option
精彩评论