在C#Winform應用程序(3.5)中,有許多表單,每個表單都有不同的控件。雖然每個listview控件使用不同的數據集,但每個數據集的基本格式保持不變。C# - 通用的方式來格式化listview控件的表單?
基本格式採用以下格式:
/* appearance */
this.lstA.View = View.Details;
this.lstA.AllowColumnReorder = true;
this.lstA.CheckBoxes = false;
this.lstA.FullRowSelect = true;
this.lstA.GridLines = false;
this.lstA.Sorting = SortOrder.Ascending;
我想要做的就是創建一個可以用來設置列表視圖的初始格式的類。
如何將listview(通過引用?)傳遞給該類,以便可以設置外觀屬性?
謝謝,效果很好。 – 2010-04-07 19:20:44