初始化提交

This commit is contained in:
lq
2026-09-09 18:42:38 +08:00
commit 40a6cb3baf
2461 changed files with 2778202 additions and 0 deletions
@@ -0,0 +1,19 @@
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; }
}
}