dialog validation support

This commit is contained in:
Pilzinsel64
2025-04-23 12:02:59 +02:00
parent b65af65a26
commit e2d6d98002
11 changed files with 1331 additions and 10 deletions

View File

@@ -9,7 +9,7 @@ public static class ThemeHelper
{
ApplyApplicationTheme(theme, getLightTheme, getDarkTheme, getDarkTheme);
}
[Obsolete()]
public static void ApplyApplicationTheme(ApplicationTheme theme, Func<RadThemeComponentBase> getLightTheme, Func<RadThemeComponentBase> getDarkTheme, Func<RadThemeComponentBase> getGrayTheme)
{
@@ -43,7 +43,7 @@ public static class ThemeHelper
themeToUse = ApplicationTheme.Dark;
else
themeToUse = ApplicationTheme.Gray;
return getTheme(new(themeToUse, highContrast));
}