2014-07-23 10:47:09 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Windows;
|
2014-07-23 20:27:14 +00:00
|
|
|
|
using RainmeterEditor.Business;
|
|
|
|
|
using RainmeterEditor.Documents.Text;
|
2014-07-23 10:47:09 +00:00
|
|
|
|
|
|
|
|
|
namespace RainmeterEditor
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for App.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App : Application
|
|
|
|
|
{
|
2014-07-23 20:27:14 +00:00
|
|
|
|
private void Application_Startup(object sender, StartupEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
DocumentManager.Instance.RegisterEditorFactory(new TextEditorFactory());
|
|
|
|
|
}
|
2014-07-23 10:47:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|