Revit使用WinForm和WPF编程范式

Posted 水獭人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Revit使用WinForm和WPF编程范式相关的知识,希望对你有一定的参考价值。

Revit使用WinForm和WPF编程范式:

1、程序入口

 [Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
    [Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
    [Autodesk.Revit.Attributes.Journaling(Autodesk.Revit.Attributes.JournalingMode.NoCommandData)]
    public class Command : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            try
            {
                // create a form to display the information of view filters
                using (ViewFiltersForm infoForm = new ViewFiltersForm(commandData))
                {
                    infoForm.ShowDialog();
                }
                return Result.Succeeded;
            }
            catch (Exception ex)
            {
                // If there is something wrong, give error information and return failed
                message = ex.Message;
                return Result.Failed;
            }
        }
    }
View Code

2、窗口接口

public ViewFiltersForm(Autodesk.Revit.UI.ExternalCommandData commandData)
        {
            InitializeComponent();
            m_doc = commandData.Application.ActiveUIDocument.Document;
        }
View Code

如果使用MVVM模式

可加入Mode层、Repository层、和VM层

以上是关于Revit使用WinForm和WPF编程范式的主要内容,如果未能解决你的问题,请参考以下文章

c# winform httpWebResponse post出错

关于winform中panel的问题!!!高手请进

有关winform和wpf问题对于一段代码每隔几秒执行一次的问题

wpf中调用winform用户控件的方法

wpf跟winform有啥区别?

wpf和Winform的选择