pb 中如何在数据窗口中增加一列(行号)?

pb 中如何在数据窗口中增加一列(行号)?,第1张

我是这么做的,在DataWindow中Header区域添加一Text,然后将Text改为"行号",在Detail区域对应Text的下面添加一个Compute,Compute Expression为"getrow()"

添加 ListBox 的双击事件

private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e)

{

label1.Text = (sender as ListBox).SelectedIndex.ToString() // 行号(从0开始)

label2.Text = (sender as ListBox).SelectedItem.ToString() // 该项的值

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11841335.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存