Delete SettingsNode.cs

This commit is contained in:
Belim 2020-09-20 19:17:40 +02:00 committed by GitHub
parent 77fbd20dd4
commit bab7f4bfed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +0,0 @@
using Privatezilla.Setting;
using System.Windows.Forms;
namespace Privatezilla
{
internal class SettingNode : TreeNode
{
public SettingBase Setting { get; }
public SettingNode(SettingBase setting)
{
Setting = setting;
Text = Setting.ID();
ToolTipText = Setting.Info();
//Checked = true;
}
}
}