久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

DevExpress控件在winform上的一些控件的常用屬性設置

 simplelam 2014-11-29

1, navBarControl 修改背景色

右鍵 --> Run Designer --> View Choose --> AdvExploreBarView

                                                 Appearances -- > Background ( BackColor 和 BackColor2 )

2,   SimpleButton 修改背景色

ButtonStyle --> 非 default

3,  GridControl 設置交替行的背景色

Appearance --> EvenRow --> 相關 color 設置

AppearanceView --> Enable--EvenRowColor

4,  設置 grid Header居中

Appearance -> HeaderPanel --> HAlignment = center

5, grid 自動增加新行

OptionsBehavior --> AllowAddRows=true

OptionsView --> NewItemRowPosition = bottom

6, gridview 的相關事情 keyDown,mouseDown,focusedRowChanged

  1. private void givMedia_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)  
  2. {  
  3.     if (givMedia.RowCount > 0)  
  4.     {  
  5.         if (IsNullOrEmptyObject(givMedia.GetFocusedRowCellValue(givMedia.Columns[0])))  
  6.         {  
  7.             return;  
  8.         }  
  9.   
  10.         sProjectID = givMedia.GetFocusedRowCellValue(givMedia.Columns[0]).ToString();  
  11.   
  12.         if (bShowBoard)  
  13.         {  
  14.             InitBoard();  
  15.         }  
  16.         else  
  17.         {  
  18.             InitAttachment();  
  19.         }  
  20.     }  
  21. }  

 

  1. private void givMedia_MouseDown(object sender, MouseEventArgs e)  
  2. {  
  3.     if (e.Button == MouseButtons.Left && e.Clicks == 2) // 判斷是否是用鼠標雙擊  
  4.     {  
  5.         DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo ghi = givMedia.CalcHitInfo(new Point(e.X, e.Y));  
  6.         if (ghi.InRow)  // 判斷光標是否在行內(nèi)  
  7.         {  
  8.             DataEdit();  
  9.         }  
  10.     }  
  11. }  

 

  1.  //按鍵  
  2. private void grvMain_KeyDown(object sender, KeyEventArgs e)  
  3. {  
  4.     if (e.KeyCode == Keys.Control | e.KeyCode == Keys.F)  // Ctrl + F 查找  
  5.     {  
  6.         DataFind();  
  7.     }  
  8.     else if (e.KeyCode == Keys.Control | e.KeyCode == Keys.N) // ctrl + N 新建  
  9.     {  
  10.         DataAdd();  
  11.     }  
  12.     else if (e.KeyCode == Keys.Control | e.KeyCode == Keys.D) // ctrl + D 篩選  
  13.     {  
  14.         DataFilter();  
  15.     }  
  16.     else if (e.KeyCode == Keys.Control | e.KeyCode == Keys.O) // ctrl + O  打開/編輯  
  17.     {  
  18.         DataEdit();  
  19.     }  
  20.     else if (e.KeyCode == Keys.Control | e.KeyCode == Keys.P) // ctrl + P  打印  
  21.     {  
  22.         DataPrint();  
  23.     }  
  24.     else if (e.KeyCode == Keys.Control | e.KeyCode == Keys.L) // ctrl + L  日志  
  25.     {  
  26.         DataLog();  
  27.     }  
  28.     else if (e.KeyCode == Keys.Delete) // delete鍵 刪除  
  29.     {  
  30.         DataDelete();  
  31.     }  
  32. }  

7. gridview 列寬根據(jù)內(nèi)容自動調(diào)整

gridview --> OptionsView --> ColumnsAutoWidth=false

初始化設置 gridControl.datasource 后,,設置 gridView.BestFitColumns

    本站是提供個人知識管理的網(wǎng)絡存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導購買等信息,,謹防詐騙。如發(fā)現(xiàn)有害或侵權內(nèi)容,,請點擊一鍵舉報,。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多