1

我想在绘图区域上显示实体作为用户的预览,然后如果用户接受程序,将实体添加到数据库或进行一些修改。

我习惯于使用事务并提交实体出现的事务,如果我可以让实体在提交事务之前出现

using (Transaction tr = db.TransactionManager.StartTransaction())
{
    BlockTable bt = tr.GetObject(db.BlockTableId, OpenMode.ForRead) as BlockTable;
    BlockTableRecord btr = tr.GetObject(bt[BlockTableRecord.ModelSpace], OpenMode.ForWrite) as BlockTableRecord;
    int i = poly2TxtSetting.currentFormat.IndexFormat.startWith;
    List<ObjectId> ListTextId = new List<ObjectId>();
    List<ObjectId> ListPointId = new List<ObjectId>();
    foreach (var po in Points)
    {
        i += poly2TxtSetting.currentFormat.IndexFormat.step;
        DBText dtext = new DBText();
        dtext.TextString = i.tostring();
        dtext.Position = po;

        dtext.SetDatabaseDefaults();
        DBPoint point = new DBPoint(po);

        btr.AppendEntity(dtext);
        tr.AddNewlyCreatedDBObject(dtext, true);

        btr.AppendEntity(point);
        tr.AddNewlyCreatedDBObject(point, true);

    }
    tr.Commit();
}
4

2 回答 2

2

如果您想在 AutoCAD 模型空间中显示您的模型,您有两个选择。

1)将其插入数据库。2) 将其添加到瞬态管理器中。

我认为你需要的是第二个选项。

搜索瞬态图形。

检查下面的代码,这将对您有所帮助。

Solid3d solid=new Solid(0);
solid.CreateSphere(10);
TransientManager.CurrentTransientManager.AddTransient(solid, TransientDrawingMode.Main, 128, new IntegerCollection());

这将在半径=10 的原点上显示球体;

于 2013-02-19T19:43:30.290 回答
1

您可以等待图形刷新:

 tr.TransactionManager.QueueForGraphicsFlush();

然后提示输入,以便用户有时间查看更新:

PromptKeywordOptions pko = new PromptKeywordOptions("\nKeep Changes?");
pko.AllowNone = true;
pko.Keywords.Add("Y");
pko.Keywords.Add("N");
pko.Keywords.Default = "Y";

PromptResult pkr = ed.GetKeywords(pko);
if (pkr.StringResult == "Y") {
    tr.Commit();
} else {
    tr.Abort();
}

链接提供了使用此技术的示例应用程序。

于 2012-05-11T00:46:03.163 回答