不过,我选择了另外一条路,做了点手脚,让控件把属性写入到aspx中去了。
其实,即使有人肯定的告诉我,在上篇中提到的ControlSerializer类的SerializeControl方法就是用于把控件属性写入到aspx中去的,我也实在没办法利用它,它的位置太“深”了。
我是通过重写GridView的Columns属性来实现的。我当时想,即使实例A(如果不明白实例A指什么,请看上篇http://www.cnblogs.com/nnhy/archive/2007/04/05/701485.html)从来不调用CreateColumns方法,但是,它肯定要调用Columns属性吧。重载该属性,并输出日志,果然,有很少的几次调用。不过,已经够了。
我的做法就是,在这个属性的get方法里面,强制改变各列的属性,再返回。设计器在生成控件的aspx时,至少要读取Columns来生成各个列吧。
主要代码如下:
1 /// <summary>
2 /// 已重写。获取表示 GridView 控件中列字段的 DataControlField 对象的集合。
3 /// 重写以实现设计时把英文表头转为中文、列重新排序、列宽度调整
4 /// </summary>
5 public override DataControlFieldCollection Columns
6 {
7 get
8 {
9 DataControlFieldCollection cs = base.Columns;
10 if (cs == null || cs.Count < 1 || Site == null || Site.Component == null) return cs;
11 SetDefaultStype(cs);
12 NGridView ng = Site.Component as NGridView;
13 if (ng == null || !ng.DesignMode) return cs;
14 try
15 {
16 if (ng.GetHashCode() == this.GetHashCode())
17 {
18 //if (isEntryCreating || !(isChanged || AutoGenerateDeleteButton || AutoGenerateEditButton || AutoGenerateSelectButton)) return cs;
19 if (isEntryCreating) return cs;
20 //SetDefaultStype(cs);
21 if (!isChanged) return cs;
22 isEntryCreating = true;
23 CreateEntryColumns(cs);
24 }
25 }
26 catch (Exception ex) { MessageBox.Show(ex.Message, "NGridView"); }
27 finally
28 {
29 isEntryCreating = false;
30 isChanged = false;
31 }
32 return cs;
33 }
34 }
35
2 /// 已重写。获取表示 GridView 控件中列字段的 DataControlField 对象的集合。
3 /// 重写以实现设计时把英文表头转为中文、列重新排序、列宽度调整
4 /// </summary>
5 public override DataControlFieldCollection Columns
6 {
7 get
8 {
9 DataControlFieldCollection cs = base.Columns;
10 if (cs == null || cs.Count < 1 || Site == null || Site.Component == null) return cs;
11 SetDefaultStype(cs);
12 NGridView ng = Site.Component as NGridView;
13 if (ng == null || !ng.DesignMode) return cs;
14 try
15 {
16 if (ng.GetHashCode() == this.GetHashCode())
17 {
18 //if (isEntryCreating || !(isChanged || AutoGenerateDeleteButton || AutoGenerateEditButton || AutoGenerateSelectButton)) return cs;
19 if (isEntryCreating) return cs;
20 //SetDefaultStype(cs);
21 if (!isChanged) return cs;
22 isEntryCreating = true;
23 CreateEntryColumns(cs);
24 }
25 }
26 catch (Exception ex) { MessageBox.Show(ex.Message, "NGridView"); }
27 finally
28 {
29 isEntryCreating = false;
30 isChanged = false;
31 }
32 return cs;
33 }
34 }
35
CreateEntryColumns就是我用来改变列属性的方法,之前的几个判断,是为了防止列属性被频繁改变。我只需要在绑定数据源之后改变就可以了。
语句if (ng.GetHashCode() == this.GetHashCode()),通过判断当前对象和A对象的HashCode,来判断是否是同一个实例,也就是说,我要求这个重载,只在实例A中生效。
最后的结果,还挺令人满意的。目前正在想法子重载DetailView和FormView 我不相信神话,我只相信汗水!我不相信命运,我只相信双手!