-
大小: 322KB文件類型: .7z金幣: 1下載: 0 次發(fā)布日期: 2021-05-17
- 語(yǔ)言: 其他
- 標(biāo)簽:
資源簡(jiǎn)介
MVP經(jīng)典代碼可以很好的認(rèn)識(shí)MVP模式的原理
代碼片段和文件信息
//----------------------------------------------------------------------------------------
//?patterns?&?practices?-?Smart?Client?Software?Factory?-?Guidance?Package
//
//?This?file?was?generated?by?this?guidance?package?as?part?of?the?solution?template
//
//?For?more?information?see:?
//?ms-help://MS.VSCC.v90/MS.VSIPCC.v90/ms.practices.scsf.2008apr/SCSF/html/03-01-010-How_to_Create_Smart_Client_Solutions.htm
//
//?Latest?version?of?this?Guidance?Package:?http://go.microsoft.com/fwlink/?linkId=62182
//----------------------------------------------------------------------------------------
using?System;
namespace?SmartClient系列.Infrastructure.Interface
{
????[AttributeUsage(AttributeTargets.Method?AllowMultiple?=?true?Inherited?=?true)]
????public?class?ActionAttribute?:?Attribute
????{
????????private?string?_actionName;
????????public?ActionAttribute(string?actionName)
????????{
????????????_actionName?=?actionName;
????????}
????????public?string?ActionName
????????{
????????????get?{?return?_actionName;?}
????????????set?{?_actionName?=?value;?}
????????}
????}
}
評(píng)論
共有 條評(píng)論