Change Ribbon-menu properties after ribbon-load
问题 I build a VSTO (made with the Ribbon Designer, not using Ribbon XML). Is it possible to change the properties (like label) of the Tab from Ribbon1.cs ? I even can't change the ribbon title with : private void Ribbon1_Load(object sender, RibbonUIEventArgs e) { myRibbon.Label = "something"; } 回答1: The way to do this dynamically is using a callback. In your ribbon XML: <tab id="myTabID" getLabel="myCallback"> .... </tab> In your ribbon code: public string myCallback(IRibbonControl control) {