回复 10楼 dingkai19830
倒不是语法问题。主要是想学学设计思路。
我继续研究,如果遇到问题了再向你请教。

QQ:491697374 Mail:vxbb@
2009-12-01 13:46
2009-12-01 19:20
程序代码:protected override void OnSizeChanged(EventArgs e)
{
SendMessage(this.Handle, 11, (IntPtr)0, (IntPtr)0);
base.OnSizeChanged(e);
if (VScroll) {
this.ResetGroupWidth(-21);
}
else {
this.ResetGroupWidth(-4);
}
this.HScroll = false;
SendMessage(this.Handle, 11, (IntPtr)1, (IntPtr)0);
this.Refresh();
}[DllImport("user32.dll", EntryPoint = "SendMessageA")]
public static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, IntPtr lParam);
2009-12-02 09:02
2009-12-25 19:38
2009-12-27 02:56
2009-12-30 11:40
2009-12-31 00:36
2010-02-06 11:02
2011-09-05 21:10
2013-01-09 14:21