Files
2025-07-14 12:03:59 +02:00

12 lines
344 B
C#

using System;
using System.Reflection;
using System.Windows.Forms;
namespace Inspectron.Settings.Windows.Configuration;
public interface IControlFactory
{
Control CreateControl(string name, string description, PropertyInfo propertyInfo, object initialValue,
Action<object> valueChangedCallback, OptionsWindow optionsWindow);
}