Hi Gurus,
Is there any command or way to do in ArcGIS pro sdk to create project from blank template behavior at my custom config addin?
Basically we would like to reuse existing ArcGIS pro startup page and extend with additional function at startup page.
May I have any reference like daml or xaml?
Best Regards,
Than
Solved! Go to Solution.
Just for other people reference, I figured it out how to do the same behavior with below code.
var defaultProjectSettings = Project.GetDefaultProjectSettings();
defaultProjectSettings.TemplateType = TemplateType.Untitled;
//Create a new project using the default project settings
await Project.CreateAsync(defaultProjectSettings);
Just for other people reference, I figured it out how to do the same behavior with below code.
var defaultProjectSettings = Project.GetDefaultProjectSettings();
defaultProjectSettings.TemplateType = TemplateType.Untitled;
//Create a new project using the default project settings
await Project.CreateAsync(defaultProjectSettings);