You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
753 B
29 lines
753 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using OpenDBDiff.Schema.Model;
|
|
|
|
namespace OpenDBDiff.Front
|
|
{
|
|
public class OptionControl : System.Windows.Forms.UserControl
|
|
{
|
|
public event OptionEventHandler OptionSaved;
|
|
public delegate void OptionEventHandler(IOption option);
|
|
public new virtual void Load(IOption option)
|
|
{
|
|
throw new NotImplementedException("Load option not implemented");
|
|
}
|
|
|
|
public virtual void Save()
|
|
{
|
|
throw new NotImplementedException("Save not implemented");
|
|
}
|
|
|
|
protected virtual void FireOptionChanged(IOption option)
|
|
{
|
|
OptionSaved?.Invoke(option);
|
|
}
|
|
}
|
|
}
|