Just in case anyone is wondering, I did reinstall the DevExpress controls and the IDE toolbox was refilled. After I did that, I was made aware that there is a utility in the DevExpress installation that will repopulate the toolbox. Apparently, some installations of 3rd party controls can disrupt the toolbox and reset it (via devenv.exe /setup). I lost the IdeaBlade stuff, too, but I ran the toolbox utility that came with the install and all was well there.
Now, back to the question about the status bar. I apologize for my ignorance, but retrieving the MainStatus object has left me a bit bewildered. How is this actually done? The syntax is escaping me. Here is what I am guessing it should be:
DevExpress.XtraEditors.ImageEdit myButton = new DevExpress.XtraEditors.ImageEdit();
myButton.Image = Resources.GetImage(ResourceNames.RowStateUnchangedImage);
WorkItem.UIExtensionSites[UIExtensionSiteNames.MainStatus].Add<DevExpress.XtraEditors.ImageEdit>(myButton);
[Edit] The addition could be any UI control. I just used the ImageEdit as an example.
Edited by Linguinut - 23-Oct-2007 at 4:15pm