VS2003, listView 中,大图标时,各个图标之间间距的控制:

VS2003, c#
listView 中,大图标时,各个图标之间间距的控制:

[DllImport("user32.dll",CharSet = CharSet.Auto)]
  public   static   extern   IntPtr   SendMessage(IntPtr   hWnd,   int   msg,   int   wParam,   int   lParam);
  private   int   LVM_SETICONSPACING   =   0x1035;
  
//把下面放到相应 form 的 form_Load 或者是 构造函数中,
SendMessage(this.listViewChart.Handle,   LVM_SETICONSPACING,   0,   0x10000   *   140   +   130);

其中 140控制行距,130控制列距

 

参考

 

http://topic.csdn.net/u/20070825/12/b1922e4d-1451-4377-a0f1-1db7b0bfcc67.html

你可能感兴趣的:(ListView,user)