Files
2026-09-07 08:07:08 +08:00

20 lines
369 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.ControlLib.UCHelper
{
/// <summary>
/// 缩放控件接口
/// </summary>
public interface IDpiControl
{
/// <summary>
/// Dpi
/// </summary>
float ScaleDpi { get; set; }
}
}