AutoCAD 2010-2016用の新しいタブを作成する方法がたくさんありました。2009年は何もありません。 AutoCAD 2009でリボンパネルが初めて登場し、その後大きく変更されました。たとえば :私は、通常の作業例やドキュメントを見つけることができます私はdoes'ntリボンパネルの新しいタブをautoCad 2009 C#に追加する方法は?
...
Autodesk.Windows.RibbonControl rbCtrl = ComponentManager.Ribbon; //doesn't work, coz ComponentManager is not exist in Autodesk.Windows
...
rbPanelSource.Items.Add(comboBox1); //doesn't work, coz Items has no Add method
...
/*Even example from ObjectARX 2009 doesn't work, coz haven't Ribbon in Autodesk.AutoCAD namespace*/
ribbonControl = Autodesk.AutoCAD.Ribbon.RibbonServices.RibbonPaletteSet.RibbonControl;
は、理解しています。
[OK]を、その後、どのように私はC#でのAutoCAD 2009のトップパンネルのタブを作成することができますか? – gek0n