mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
11 lines
354 B
C#
11 lines
354 B
C#
|
|
namespace LanMountainDesktop.PluginSdk;
|
||
|
|
|
||
|
|
public interface IPluginAppearanceContext
|
||
|
|
{
|
||
|
|
PluginAppearanceSnapshot Snapshot { get; }
|
||
|
|
|
||
|
|
double ResolveScaledCornerRadius(double baseRadius, double? minimum = null, double? maximum = null);
|
||
|
|
|
||
|
|
double ResolveCornerRadius(PluginCornerRadiusPreset preset, double? minimum = null, double? maximum = null);
|
||
|
|
}
|