DotNet 4.8.1 build of DotNetBar
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
|
||||
#if AdvTree
|
||||
namespace DevComponents.Tree
|
||||
#elif DOTNETBAR
|
||||
namespace DevComponents.DotNetBar
|
||||
#endif
|
||||
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the provider for the element style classes support.
|
||||
/// </summary>
|
||||
public interface IElementStyleClassProvider
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns the instance of the ElementStyle with given class name or null if there is no class with that name defined.
|
||||
/// </summary>
|
||||
/// <param name="className">Class name. See static members of ElementStyleClassKeys class for the list of available keys.</param>
|
||||
/// <returns>Instance of ElementStyle for given class name or null if class cannot be found.</returns>
|
||||
ElementStyle GetClass(string className);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user