2014-07-26 07:12:56 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
|
2014-08-12 13:33:13 +00:00
|
|
|
|
namespace RainmeterStudio.TextEditorPlugin
|
2014-07-26 07:12:56 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for TextEditorControl.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class TextEditorControl : UserControl
|
|
|
|
|
{
|
|
|
|
|
private TextDocument _document;
|
|
|
|
|
|
|
|
|
|
public TextEditorControl(TextDocument document)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2014-09-08 19:53:00 +00:00
|
|
|
|
DataContext = this;
|
2014-07-26 07:12:56 +00:00
|
|
|
|
|
|
|
|
|
_document = document;
|
2014-09-08 19:53:00 +00:00
|
|
|
|
textBox.Text = _document.Text;
|
|
|
|
|
textBox.TextChanged += text_TextChanged;
|
2014-07-26 07:12:56 +00:00
|
|
|
|
}
|
2014-08-30 07:24:01 +00:00
|
|
|
|
|
|
|
|
|
private void text_TextChanged(object sender, TextChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
_document.IsDirty = true;
|
2014-09-08 19:53:00 +00:00
|
|
|
|
_document.Text = textBox.Text;
|
2014-08-30 07:24:01 +00:00
|
|
|
|
}
|
2014-07-26 07:12:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|