WinForm遍历DataGridaView

参考代码

private void btn_Sure_Click(object sender, EventArgs e)
{
try
{
for (int i = 0; i < myDataGridView1.Rows.Count; i++)
{
if (myDataGridView1.Rows[i].Cells["IsSelect"].Value != null)
{
if ((bool)myDataGridView1.Rows[i].Cells["IsSelect"].Value)
{
listdataRow.Add(myDataGridView1.Rows[i]);
}
}
}
this.DialogResult = System.Windows.Forms.DialogResult.OK;
}
catch (Exception ex)
{
MessageBoxShow(ex.Message);
}
}

时间: 2024-10-11 15:57:11

WinForm遍历DataGridaView的相关文章

WinForm 遍历用户控件里CheckBox

1.常用调用方法 1 public partial class UCRights : UserControl 2 { 3 private readonly int LOCATIONY; 4 private DataTable MENU = new DataTable(); 5 private BLL.User oUser = new HRPOWER.BLL.User(); 6 7 public UCRights() 8 { 9 InitializeComponent(); 10 LOCATION

C# winForm 遍历容器控件内所有Label,修改其背景色

//容器控件为tableLayoutPanel1 foreach (Control label in tableLayoutPanel1.Controls) { if (label.GetType().ToString() == "System.Windows.Forms.Label") { label.BackColor = Color.Red; } } 原文地址:https://www.cnblogs.com/nb08611033/p/8890960.html

C#遍历窗体控件(原文出自http://www.liangshunet.com/ca/201403/286434593.htm)

一.C#遍历窗体控件 主要遍历属于窗体(Form)的控件(Controls),假如窗体中有 Panel.Button 和 TextBox 控件,遍历代码如下: /// <summary> /// Winform C#遍历窗体控件 /// </summary> /// <param name="ctrlName">控件名称</param> public void ForeachFormControls(string ctrlName) {

c# winform 循环遍历界面上的所有控件,foreach,Controls,AllowDrop

foreach (System.Windows.Forms.Control control in this.groupBox2.Controls)//遍历groupBox2上的所有控件 { if (control is System.Windows.Forms.PictureBox) { System.Windows.Forms.PictureBox pb = (System.Windows.Forms.PictureBox)control; pb.AllowDrop = true; } if

C#Winform版之CheckBox、ChecklistBox控件遍历代码

CheckBox,是各种开发语言环境和网页中常用的控件.下面,本文给大家讲解的是C#Winform版的CheckBox.控件遍历.全选.反选实例代码.①直接引用如果窗体form中存在CheckBox控件,直接引用的方法为:控件名称.属性=属性值例子:checkBox1.Checked = true;②遍历引用遍历引用有两种情况,其一为checkBox控件不包含在任何容器内:其二是checkBox控件包含于某些容器内.A:checkBox不包含在任何容器内的遍历方法 foreach(Control

遍历winform 窗体控件

//遍历窗体控件并给控件赋值        private void Control_Load(object sender, EventArgs e)        {            foreach (Control Ctr in this.Controls)            {                if (Ctr is System.Windows.Forms.CheckBox)                {                    checkBox1

c# winform中遍历控件

foreach (Control c in this.Controls)             {                 if (c is ComboBox)                 {                     c.Enabled = false;                 }             }

[WinForm] 使用反射将业务对象绑定到窗体或控件容器

在WebForm中,可以使用反射将业务对象绑定到 ASP.NET 窗体控件.最近做Winform项目,也参考WebForm中的代码实现同样的功能.     Winform没有提供类似WebForm中的FindControl方法,我于是用遍历控件的方式,写了一个类似WebForm中的这个方法,考虑到Winform中的很多控件放在Label.TabControl中,方法采用了递归的方式.     Winform和Winform的控件也有些区别,如在Winform中,DateTimePicker取值是

OpenCV2+入门系列(三):遍历图像的几种方法

根据OpenCV中Mat类型的结构和内存中存储方式,此处给出三种对图像进行遍历的方法.首先给出基础的读取图片代码,在中间替换三种遍历方法即可,本文中,程序将遍历图像并将所有像素点置为255,所有运行结果中命令行里的数字为程序执行时间. #include "stdafx.h" #include <opencv2/core/core.hpp> #include "highgui.h" #include <iostream> using names