Click here to Skip to main content
15,867,488 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi everyone,

Need a help with ribbon xml toogle button.
I have a toggle button on the ribbon, which hides taskpane in MS Powerpoint.
It works fine and correct:
XML
<toggleButton id="pane" onAction="pane" screentip="Show/Hide" label="tools" getImage="GetButtonImage" size="large" getPressed="toggled"/>

VB
Public Sub pane(ByVal sender As Office.IRibbonControl, ByVal value As Boolean)
Globals.ThisAddIn.TaskPane.Visible = value
End Sub

VB
Public Function toogled(ByVal control As Office.IRibbonControl) As Boolean
Return Globals.ThisAddIn.TaskPane.Visible
End Function


Now, I need a toggle button to be unchecked, when I hide task pane by clicking on the "x". I am not quite sure how to do this and what code to put in the even below:

VB
Private Sub custompane_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles custompane.VisibleChanged
End Sub

Using Visual Studio 2010, vb.net.
Your help is much appreciated, guys!

Thanks
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900