Messenger/MSGer.tk/Forms/SettingsPanels/SettingsPanel.cs

22 lines
517 B
C#
Raw Normal View History

2015-07-06 11:04:54 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace MSGer.tk
{
public class SettingsPanel : UserControl
{
/// <summary>
/// SaveSettings
/// </summary>
/// <returns>Reopen</returns>
public virtual bool SaveSettings()
{
throw new InvalidOperationException("SaveSettings is not overriden."); //2015.05.23.
}
}
}