12 lines
344 B
C#
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);
|
|
}
|