18 lines
413 B
C#
18 lines
413 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Media;
|
|
|
|
namespace Controls
|
|
{
|
|
class Controls
|
|
{
|
|
public static Brush ThemeBrush {
|
|
get {
|
|
if (Environment.OSVersion.Version.Major < 10)
|
|
return new SolidColorBrush(Colors.DimGray);
|
|
else
|
|
return SystemParameters.WindowGlassBrush;
|
|
}
|
|
}
|
|
}
|
|
} |