mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
33 lines
853 B
C#
33 lines
853 B
C#
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;
|
|
|
|
namespace RainmeterStudio.Documents.Text
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for TextEditorControl.xaml
|
|
/// </summary>
|
|
public partial class TextEditorControl : UserControl
|
|
{
|
|
private TextDocument _document;
|
|
|
|
public TextEditorControl(TextDocument document)
|
|
{
|
|
InitializeComponent();
|
|
|
|
_document = document;
|
|
text.Text = document.Lines.Aggregate((a, b) => a + "\n" + b);
|
|
}
|
|
}
|
|
}
|