10月9日至10月22日備忘錄
1, Dictionary的用法:Add(), ContainsKey();value為一個數組;value為一個類;參見:www.cnblogs.com/linlf03/archive/2011/12/09/2282574.html
2,DataGridView及其子控件(Column),具備換行的屬性(column.DefaultCellStyle.WrapMode=DataGridVierTriState.True)
3,更新控件字號的方法,重新設置改字體及其大小。dataGridView.Font=new Font(dataGridView.Font.FontFamily, 10)
4,在多個條件(事件觸發行為Ctrl+"+"和Ctrl"OmePlus")進行判斷時,將行為一致的放在一起。
5,DataGridView列表項自適應調整事件(AutoResizeColumn(columnIndex)),ColumnWidthChanged事件觸發時,可以在這個地方重設其寬度或其他屬性。
6,Screen控件的使用,結合Rectangle、Point,用來設置(調整)控件的顯示位置:
Rectangle rectange=new Rectangle();
foreach(Screen screen in Screen.AllScreens)
{
screenBound=Rectangle.Union(screenBound, screen.Bounds);
}
if(this.Right>screentBounds.Right)
{
this.Location= new Point(this.Location.X-(this.Right-screenBounds.Right),this.Location.Y);
}
7,Linq中的泛型數據查詢。例,獲取朋友圈中愛好為籃球的老鄉序列:var friends=new List<Friend>(); var hobbies= friends.Where(i=>i.Hometown=="Beijing").Select(i=>i.Hobbies="BasketBall");
8,註意設計之道:MVP的典型行為是:UI觸發->傳給Presenter處理->數據處理->更新UI。
9,註意父類和子類的方法使用,若存在相同事件行為,可自定義私有函數實現繼承重寫。Protected virtual DoSomething(); portected override void DoSomething();
10,註意窗口控件的默認語言設置,在窗體設為默認即可(SimSun, Segoe的區別)。
10月9日至10月22日備忘錄