RobotStudio event

Get ToolControlBase.Apply event

Options
Hello,
I want to update my SmartComponent (who read RapidData) when I apply modification.
I see that a ToolControlBase.Apply exists, but I can't find where this is declared as this is not static.


Comments

  • DenisFR
    Options
    Hello,
    I've found how should to do, but this doesn't work:
    using ABB.Robotics.RobotStudio.Environment;<br>...<br>		public override void OnLoad(SmartComponent component)<br>		{<br>			base.OnLoad(component);<br>			//Connect to Apply Button<br>			CommandBarControl commandBarControl = UIEnvironment.RibbonTabs["RAPID"].Groups["Controller"].Controls["RapidApplyMenu"];<br>			if (commandBarControl!=null)<br>			{<br>				((CommandBarPopup)commandBarControl).ClickButton.ExecuteCommand += ClickButton_ExecuteCommand;<br>				((CommandBarButton)((CommandBarPopup)commandBarControl).Controls["RapidApplyAll"]).ExecuteCommand += ClickButton_ExecuteCommand;<br>				((CommandBarButton)((CommandBarPopup)commandBarControl).Controls["RapidModuleApply"]).ExecuteCommand += ClickButton_ExecuteCommand;<br>			}<br>			string s = "";<br>		}<br><br>		private void ClickButton_ExecuteCommand(object sender, ExecuteCommandEventArgs e)<br>		{<br>			throw new NotImplementedException();<br>		}<br><br>
    ClickButton_ExecuteCommand is never called...

    Does RobotStudio.UI.Rapid.EditorManagement{Void ApplyAll_ExecuteCommand(System.Object, ABB.Robotics.RobotStudio.Environment.ExecuteCommandEventArgs)} raise event?




  • DenisFR
    DenisFR ✭✭✭
    Options
    Any news?