PowerControl: Remove delegates from MenuItemWithOptions

This commit is contained in:
Kamil Trzciński 2022-12-19 22:47:50 +01:00
parent f207c12935
commit a30ef2c400

View file

@ -2,10 +2,6 @@ namespace PowerControl.Menu
{
public class MenuItemWithOptions : MenuItem
{
public delegate object CurrentValueDelegate();
public delegate object[] OptionsValueDelegate();
public delegate object ApplyValueDelegate(object selected);
public IList<Object> Options { get; set; } = new List<Object>();
public Object? SelectedOption { get; set; }
public Object? ActiveOption { get; set; }