mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
33 lines
768 B
C#
33 lines
768 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using RainmeterStudio.Core.Documents;
|
|
using RainmeterStudio.Core.Model;
|
|
|
|
namespace RainmeterStudio.TextEditorPlugin
|
|
{
|
|
public class TextEditor : IDocumentEditor
|
|
{
|
|
private TextDocument _document;
|
|
private TextEditorControl _control;
|
|
|
|
public TextEditor(TextDocument document)
|
|
{
|
|
_document = document;
|
|
_control = new TextEditorControl(document);
|
|
}
|
|
|
|
public IDocument AttachedDocument
|
|
{
|
|
get { return _document; }
|
|
}
|
|
|
|
public System.Windows.UIElement EditorUI
|
|
{
|
|
get { return _control; }
|
|
}
|
|
}
|
|
}
|