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