51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
|
namespace System.Web.Mvc {
|
|||
|
using System.Diagnostics.CodeAnalysis;
|
|||
|
|
|||
|
public class ViewPage<TModel> : ViewPage {
|
|||
|
|
|||
|
private ViewDataDictionary<TModel> _viewData;
|
|||
|
|
|||
|
public new AjaxHelper<TModel> Ajax {
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
public new HtmlHelper<TModel> Html {
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
public new TModel Model {
|
|||
|
get {
|
|||
|
return ViewData.Model;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
[SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|||
|
public new ViewDataDictionary<TModel> ViewData {
|
|||
|
get {
|
|||
|
if (_viewData == null) {
|
|||
|
SetViewData(new ViewDataDictionary<TModel>());
|
|||
|
}
|
|||
|
return _viewData;
|
|||
|
}
|
|||
|
set {
|
|||
|
SetViewData(value);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public override void InitHelpers() {
|
|||
|
base.InitHelpers();
|
|||
|
|
|||
|
Ajax = new AjaxHelper<TModel>(ViewContext, this);
|
|||
|
Html = new HtmlHelper<TModel>(ViewContext, this);
|
|||
|
}
|
|||
|
|
|||
|
protected override void SetViewData(ViewDataDictionary viewData) {
|
|||
|
_viewData = new ViewDataDictionary<TModel>(viewData);
|
|||
|
|
|||
|
base.SetViewData(_viewData);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|