Work on resource and settings managers, added some documentation.

This commit is contained in:
2014-08-15 15:31:33 +03:00
parent 03d9848b50
commit ef8aec25b7
36 changed files with 1148 additions and 671 deletions

View File

@ -1,4 +1,6 @@
using RainmeterStudio.Core.Model;
using System.Collections.Generic;
using System.Linq;
using RainmeterStudio.Core.Model;
namespace RainmeterStudio.Core.Documents
{
@ -17,6 +19,18 @@ namespace RainmeterStudio.Core.Documents
/// </summary>
public string DefaultExtension { get; private set; }
/// <summary>
/// Gets or sets the properties of this template
/// </summary>
/// <remarks>Properties are used to display a form dialog after the "New item" dialog closes.</remarks>
public virtual IEnumerable<Property> Properties
{
get
{
return Enumerable.Empty<Property>();
}
}
/// <summary>
/// Initializes the document template
/// </summary>