Work on document manager

This commit is contained in:
2014-07-23 23:27:14 +03:00
parent 1cf00049d2
commit 50e6e27cd6
33 changed files with 1204 additions and 6 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterEditor.Model.Events
{
public class DocumentOpenedEventArgs : EventArgs
{
public IDocumentEditor Editor { get; private set; }
public DocumentOpenedEventArgs(IDocumentEditor editor)
{
Editor = editor;
}
}
}