20 lines
369 B
C#
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; }
|
|
}
|
|
}
|