gpt4 book ai didi

c# - 如何使用 .net compact framework 3.5 隐藏数据网格中的列

转载 作者:太空狗 更新时间:2023-10-30 00:01:08 25 4
gpt4 key购买 nike

我有一个使用 DataReader 作为其数据源的 DataGrid。我想隐藏数据网格的第一列。我正在使用 .net compact framework 3.5。我可以找到 Windows 窗体的示例,但 api 已更改到无法正常工作。

最佳答案

您可以将列样式宽度设置为0-1

DataGridTableStyle ts = new DataGridTableStyle();
ts.MappingName = "Order";

// Order date column style
DataGridColumnStyle cust_id = new DataGridTextBoxColumn();
cust_id.MappingName = "cust_id";
cust_id.HeaderText = "ID";

//Hide Customer ID
cust_id.Width = -1;

ts.GridColumnStyles.Add(cust_id);

// Shipping name column style
DataGridColumnStyle cust_name = new DataGridTextBoxColumn();
cust_name.MappingName = "cust_name";
cust_name.HeaderText = "Customer";
cust_name.Width = 500;
ts.GridColumnStyles.Add(cust_name);

GridView1.TableStyles.Add(ts);

关于c# - 如何使用 .net compact framework 3.5 隐藏数据网格中的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/849330/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com