43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace UniversalEditor.UserInterface.WindowsForms
|
|
{
|
|
public partial class OptionPanel : UserControl, IOptionPanelImplementation
|
|
{
|
|
public OptionPanel()
|
|
{
|
|
InitializeComponent();
|
|
mvarOptionGroups = base.GetType().FullName.Split(new char[] { '.' });
|
|
}
|
|
|
|
public virtual void LoadSettings()
|
|
{
|
|
}
|
|
public virtual void SaveSettings()
|
|
{
|
|
}
|
|
public virtual void ResetSettings()
|
|
{
|
|
}
|
|
|
|
private string[] mvarOptionGroups = null;
|
|
public virtual string[] OptionGroups
|
|
{
|
|
get { return mvarOptionGroups; }
|
|
}
|
|
|
|
public virtual bool IsAvailable
|
|
{
|
|
get { return false; }
|
|
}
|
|
|
|
private Image mvarIconImage = null;
|
|
public Image IconImage { get { return mvarIconImage; } set { mvarIconImage = value; } }
|
|
}
|
|
}
|