I am trying to develop a winform app where there is a button. On button click, list of lync windows should appear as they appear when we hover over the lync icon in system taskbar as below.
How can i get the same functionality on button click on my winform.
I am using Lync SDK 2013 but am fine with 2010 also.
So in summary, i want to simulate the function when we hover over the lync icon in taskbar in a button on my form. On click of the button, the list of the conversations would be displayed with the active/most recent one highlighted and clicking on that would take to that particular conversation window. Any ideas?
Thanks
It's a bit ugly, but when I tried to detect conversation windows, I had no other choice than enumerating all windows using the Windows API function
EnumWindows
and then check for the window class"LyncConversationWindowClass"
. But this was more than a year ago using Lync 2010 - don't know if it works with Lync 2013 or if there is a better solution yet.At least, this code doesn't require the Lync SDK. ;-)
Here is my code snippet, I hope it helps: