mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
23 lines
574 B
C#
23 lines
574 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using RainmeterEditor.Business;
|
|
using RainmeterEditor.Documents.Text;
|
|
|
|
namespace RainmeterEditor
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
private void Application_Startup(object sender, StartupEventArgs e)
|
|
{
|
|
DocumentManager.Instance.RegisterEditorFactory(new TextEditorFactory());
|
|
}
|
|
}
|
|
}
|