mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
32 lines
764 B
C#
32 lines
764 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using RainmeterEditor.Model;
|
|||
|
|
|||
|
namespace RainmeterEditor.Documents.Ini
|
|||
|
{
|
|||
|
/*public class IniSkinDesigner : IDocumentEditor
|
|||
|
{
|
|||
|
public override IDocument Document
|
|||
|
{
|
|||
|
get { throw new NotImplementedException(); }
|
|||
|
}
|
|||
|
|
|||
|
public override string Title
|
|||
|
{
|
|||
|
get { throw new NotImplementedException(); }
|
|||
|
}
|
|||
|
|
|||
|
public override System.Windows.UIElement EditorUI
|
|||
|
{
|
|||
|
get { throw new NotImplementedException(); }
|
|||
|
}
|
|||
|
|
|||
|
public override EventHandler SelectionChanged
|
|||
|
{
|
|||
|
get { throw new NotImplementedException(); }
|
|||
|
}
|
|||
|
}*/
|
|||
|
}
|