本文整理汇总了C#中UIApplication.OpenAndActivateDocument方法的典型用法代码示例。如果您正苦于以下问题:C# UIApplication.OpenAndActivateDocument方法的具体用法?C# UIApplication.OpenAndActivateDocument怎么用?C# UIApplication.OpenAndActivateDocument使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UIApplication
的用法示例。
在下文中一共展示了UIApplication.OpenAndActivateDocument方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BUYLStartNewProject
public static void BUYLStartNewProject(UIApplication app, BUYLTools.Utils.Countries country)
{
if (BUYLTools.ContentLoader.GitContentLoader.CheckForContentRepositoryDirectory())
{
if (app != null)
{
Document doc = null;
switch (country)
{
case BUYLTools.Utils.Countries.DECH:
if (File.Exists(BUYLTools.ContentLoader.GitContentLoader.GetDECHTemplateFile(app.Application.VersionNumber)))
doc = app.Application.NewProjectDocument(BUYLTools.ContentLoader.GitContentLoader.GetDECHTemplateFile(app.Application.VersionNumber));
else
MessageBox.Show("Templatefile {0} not found!", BUYLTools.ContentLoader.GitContentLoader.GetDECHTemplateFile(app.Application.VersionNumber));
break;
case BUYLTools.Utils.Countries.DEDE:
if (File.Exists(BUYLTools.ContentLoader.GitContentLoader.GetDEDETemplateFile(app.Application.VersionNumber)))
doc = app.Application.NewProjectDocument(BUYLTools.ContentLoader.GitContentLoader.GetDEDETemplateFile(app.Application.VersionNumber));
else
MessageBox.Show("Templatefile {0} not found!", BUYLTools.ContentLoader.GitContentLoader.GetDEDETemplateFile(app.Application.VersionNumber));
break;
default:
doc = null;
break;
}
if (doc != null)
{
SaveFileDialog dlg = new SaveFileDialog();
dlg.Filter = "Revit project files (*.rvt)|*.rvt";
if (dlg.ShowDialog() == DialogResult.OK)
{
SaveAsOptions op = new SaveAsOptions() { OverwriteExistingFile = false };
if (File.Exists(dlg.FileName))
{
if (MessageBox.Show("The model alreaddy exists and will be overriden!", "Model Creation", MessageBoxButtons.YesNo) == DialogResult.Yes)
op.OverwriteExistingFile = true;
else
op.OverwriteExistingFile = false;
}
doc.SaveAs(dlg.FileName, op);
app.OpenAndActivateDocument(dlg.FileName);
}
}
}
}
}