DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,27 @@
#if FRAMEWORK20
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace DevComponents.DotNetBar.Validator
{
/// <summary>
/// Defines an interface that can be implemented by custom error providers to be used with SuperValidator.
/// </summary>
public interface IErrorProvider
{
/// <summary>
/// Sets the error state on the control.
/// </summary>
/// <param name="control">Control for which error state is being set.</param>
/// <param name="value">The error message from validator.</param>
void SetError(Control control, string value);
/// <summary>
/// Clears the error state for the control.
/// </summary>
/// <param name="control">Control to clear error state for.</param>
void ClearError(Control control);
}
}
#endif