ZhiYeJianKang_PeiXun/cyqdata-master/UI/IUIValue.cs
2025-02-20 15:41:53 +08:00

27 lines
559 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace CYQ.Data.UI
{
/// <summary>
/// 对于自定义控件只要继承此接口即可以使用GetFrom与SetTo方法
/// </summary>
public interface IUIValue
{
/// <summary>
/// 控件的值
/// </summary>
object MValue { get;set;}
/// <summary>
/// 控件的启用状态
/// </summary>
bool MEnabled { get;set;}
/// <summary>
/// 控件的名称Name或id
/// </summary>
string MID { get;}
}
}