11 lines
236 B
C#
11 lines
236 B
C#
|
|
using System.Windows;
|
|||
|
|
|
|||
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
public sealed class SplashConfig
|
|||
|
|
{
|
|||
|
|
public static double ImageHeight { get; set; } = 300d;
|
|||
|
|
|
|||
|
|
public static CornerRadius CornerRadius { get; set; } = new CornerRadius(24d);
|
|||
|
|
}
|