zoukankan      html  css  js  c++  java
  • C# Winform DataGridview 实现行号倒序

    设计简单测试界面如上

    选择Datagirdview 的Paint事件

        private void dttest_Paint(object sender, PaintEventArgs e)     

        {            

             int rowcount = dttest.RowCount;   

             int showcount = dttest.DisplayedRowCount(true);    

             if (showcount == 0) return;        

            System.Drawing.Rectangle currrct;          

           int startNo = dttest.FirstDisplayedCell.RowIndex;  

           int ColNo = dttest.FirstDisplayedCell.ColumnIndex;    

           string stext = "";    

            int nowy = 0;         

           int hDelta = 0;      

           for (int i = startNo; i < startNo + showcount; i++)

         {

                currrct = (System.Drawing.Rectangle)dttest.GetCellDisplayRectangle(ColNo, i, true);   

                 nowy = currrct.Y + 2;      

                stext = string.Format("{0, 3}", rowcount - i);       

                 if (hDelta == 0)            

                 hDelta = (currrct.Height - dttest.Font.Height) / 2;   

                  if (dttest.Rows[i].Selected == true)            

             e.Graphics.DrawString(stext, dttest.Font, new System.Drawing.SolidBrush(System.Drawing.Color.White), 10, nowy + hDelta);         

            else       

                  e.Graphics.DrawString(stext, dttest.Font, new System.Drawing.SolidBrush(System.Drawing.Color.Black), 10, nowy + hDelta);

                }      

       }

    Result:

    丫头,记得活的漂亮点儿
  • 相关阅读:
    Bamboo CI 使用的一些记录
    fork 与 branch、clone 的区别
    使用--ignore-scripts解决npm/yarn安装依赖失败问题
    gyp ERR! find VS gyp ERR! find VS msvs_version not set from command line or npm config gyp ERR! find
    sdk manager 打不开解决方法
    appium
    北京幼升小
    MySQL中limit的问题
    初始社保费管理客户端的单位编号
    flutter BackdropFilter的毛玻璃效果使用
  • 原文地址:https://www.cnblogs.com/Alisa-study/p/5687565.html
Copyright © 2011-2022 走看看