void SetColumnInfo(int col, int cxIdeal, int cxMin);
- col 是要设置信息的列的索引。
- cxIdeal 是列的理想大小(以像素为单位)。
- cxMin 是列的最小大小(以像素为单位)。
通常,这个方法可以用于在多窗格布局中设置列的大小信息,以确保用户可以以可接受的方式调整列的大小。
示例使用:
CSplitterWnd splitter;
// 假设 splitter 是已经创建好的 CSplitterWnd 对象
// 设置第 0 列的信息
splitter.SetColumnInfo(0, 200, 50);
这个例子设置第 0 列的理想大小为 200 像素,最小大小为 50 像素。你可以根据实际需要调整这些值。
转载请注明出处:http://www.zyzy.cn/article/detail/22444/MFC/CSplitterWnd