mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
43 lines
667 B
C#
43 lines
667 B
C#
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace mRemoteNG.UI.Forms.OptionsPages
|
|
{
|
|
public class OptionsPage : UserControl
|
|
{
|
|
public OptionsPage()
|
|
{
|
|
//InitializeComponent();
|
|
}
|
|
|
|
#region Public Properties
|
|
[Browsable(false)]public virtual string PageName {get; set;}
|
|
|
|
public virtual Icon PageIcon {get; set;}
|
|
#endregion
|
|
|
|
#region Public Methods
|
|
public virtual void ApplyLanguage()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void LoadSettings()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void SaveSettings()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void RevertSettings()
|
|
{
|
|
|
|
}
|
|
#endregion
|
|
}
|
|
}
|