zoukankan      html  css  js  c++  java
  • test

    博客园markdown编辑器测试


    private void gridControl1_DragDrop(object sender, DragEventArgs e)
            {
                GridControl grid = sender as GridControl;
                Point pt = grid.PointToClient(new Point(e.X, e.Y));
                GridView view = grid.GetViewAt(pt) as GridView;
                if (view == null)
                    return;
                GridHitInfo hitInfo = gridView1.CalcHitInfo(pt);
                if (hitInfo.InRowCell)
                    MessageBox.Show(hitInfo.RowHandle.ToString() + "----" + hitInfo.RowHandle.ToString());
    
    未经作者允许,禁止转载
  • 相关阅读:
    Codeforces 526D Om Nom and Necklace (KMP)
    HDU
    HDU
    Codeforces 219D
    HDU
    HDU
    POJ
    HDU
    HDU
    第二次作业
  • 原文地址:https://www.cnblogs.com/wangyangang/p/12340673.html
Copyright © 2011-2022 走看看