我使用 WPF 制作了一个项目,我想在 Revit 中打开它的窗口我尝试 Windows 窗体它工作但 wpf 没有打开!
我用这个
public virtual Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
IDesign.MainWindow testsd = new IDesign.MainWindow();
testsd.InitializeComponent();
//MessageBox.Show("notworking");
return Result.Succeeded;
}
但它没有任何解决方案