WinForm实现基于BindingSource的方法扩展

本文实例展示了WinForm实现基于BindingSource的方法扩展,共享给大家供大家参考。具体方法如下:

关键代码如下:

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Windows.Forms;

namespace WinFormUtilHelpV2
{
  /// <summary>
  /// 基于.NET 2.0的BindingSource工具类
  /// </summary>
  public static class BindingSourceToolV2
  {
    /// <summary>
    /// 获取Control的BindingSource
    /// </summary>
    /// <param name="control">Control</param>
    /// <returns>BindingSource</returns>
    public static BindingSource GetBindingSource(this Control control)
    {
      if (control != null)
      {
        PropertyInfo _finded = control.GetType().GetProperty("DataSource");
        if (_finded != null)
        {
          object _dbsource = _finded.GetValue(control, null);
          if (_dbsource != null && _dbsource is BindingSource)
          {
            return _dbsource as BindingSource;
          }
        }
      }
      return null;
    }
    /// <summary>
    /// 从BindingSource中条件移出
    /// </summary>
    /// <typeparam name="T">泛型</typeparam>
    /// <param name="dbSource">BindingSource</param>
    /// <param name="match">委托</param>
    /// <returns>条件移出个数</returns>
    public static int Remove<T>(this BindingSource dbSource, Predicate<T> match) where T : class
    {
      int _count = 0;
      if (dbSource != null)
      {
        for (int i = 0; i < dbSource.List.Count; i++)
        {
          object _cur = dbSource.List[i];
          if (match((T)_cur))
          {
            dbSource.List.Remove(_cur);
            _count++;
            i--;
          }
        }
      }
      return _count;
    }
    /// <summary>
    /// 从BindingSource中条件查找
    /// </summary>
    /// <typeparam name="T">泛型</typeparam>
    /// <param name="dbSource">BindingSource</param>
    /// <param name="match">委托</param>
    /// <returns>没有查找到则返回NULL</returns>
    public static T Find<T>(this BindingSource dbSource, Predicate<T> match) where T : class
    {
      T _finded = null;
      if (dbSource != null)
      {
        foreach (T t in dbSource.List)
        {
          if (match(t))
          {
            _finded = t;
            break;
          }
        }
      }
      return _finded;
    }
    /// <summary>
    /// 从BindingSource中条件查找集合
    /// </summary>
    /// <typeparam name="T">泛型</typeparam>
    /// <param name="dbSource">BindingSource</param>
    /// <param name="match">委托</param>
    /// <returns>没有查找到则返回NULL</returns>
    public static IList<T> FindAll<T>(this BindingSource dbSource, Predicate<T> match) where T : class
    {
      IList<T> _findedList = null;
      if (dbSource != null)
      {
        _findedList = new List<T>();
        foreach (T t in dbSource.List)
        {
          if (match(t))
          {
            _findedList.Add(t);
          }
        }
      }
      return _findedList;
    }

  }
}

测试代码如下:

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using WinFormUtilHelpV2;
using WinFormUtilHelpV2Test.Models;
namespace WinFormUtilHelpV2Test
{
  public partial class WinBindingSourceToolV2Test : Form
  {
    public WinBindingSourceToolV2Test()
    {
      InitializeComponent();
    }
    private void WinBindingSourceToolV2Test_Load(object sender, EventArgs e)
    {
      IList<Person> _source = new List<Person>();
      for (int i = 0; i < 10; i++)
      {
        Person _entity = new Person();
        _entity.Age = i;
        _entity.Name = "YanZhiwei" + i;
        _source.Add(_entity);
      }
      dataGridView1.SetBindingSource(_source);
    }
    private void button1_Click(object sender, EventArgs e)
    {
      Person _person = dataGridView1.GetBindingSource().Find<Person>(c => c.Age == 5);
      MessageBox.Show("条件查找:" + _person != null ? "查找到一个." : "未查找到.");
    }
    private void button2_Click(object sender, EventArgs e)
    {
      int _count = dataGridView1.GetBindingSource().Remove<Person>(c => c.Age >= 5);
      MessageBox.Show("成功移出:" + _count);
    }
    private void button3_Click(object sender, EventArgs e)
    {
      IList<Person> _personList = dataGridView1.GetBindingSource().FindAll<Person>(c => c.Age < 5);
      MessageBox.Show("条件查找:" + _personList != null ? "查找到" + _personList.Count + "个" : "未查找到.");
    }
  }
}
    /// <summary>
    /// DataGridView SetBindingSource
    /// </summary>
    /// <typeparam name="T">IList</typeparam>
    /// <param name="dataGrid">dataGrid</param>
    /// <param name="source">泛型</param>
    public static void SetBindingSource<T>(this DataGridView dataGrid, IList<T> source)
    {
      BindingList<T> _bindinglist = new BindingList<T>(source);
      BindingSource _source = new BindingSource(_bindinglist, null);
      dataGrid.DataSource = _source;
    }

测试结果如下图所示:

希望本文所述实例对大家C#程序设计能有所帮助!

(0)

相关推荐

  • winform使用委托和事件来完成两个窗体之间通信的实例

    单击按钮 复制代码 代码如下: /// <summary>    /// Form1    /// </summary>    /// <param name="message"></param>    public delegate void ClickDelegateHander(string message); //声明一个委托    public partial class Form1 : Form    {        pub

  • C#之WinForm WebBrowser实用技巧汇总

    本文实例汇总了C#中WinForm WebBrowser常见的实用技巧,对于C#程序开发来说有不错的借鉴价值.分别叙述如下: 方法1:获取状态栏信息 void webBrowser1_StatusTextChanged(object sender, EventArgs e) { label1.Text = webBrowser1.StatusText; } 方法2:页面跳转后改变地址栏地址 //在Navigated事件处理函数中改变地址栏地址是最恰当的: private void webBrow

  • WinForm实现跨进程通信的方法

    本文实例展示了WinForm实现跨进程通信的方法,分享给大家供大家参考之用.具体方法如下: 主要功能代码如下: public class WinMessageHelper { private struct COPYDATASTRUCT { public IntPtr dwData; public int cbData; [MarshalAs(UnmanagedType.LPStr)] public string lpData; } //使用COPYDATA进行跨进程通信 public const

  • WinForm中变Enter键为Tab键实现焦点转移的方法

    本文实例讲述了WinForm中变Enter键为Tab键实现焦点转移的方法,在进行C#应用程序开发时有一定的实用价值.分享给大家供大家参考. 具体实现代码如下: /// <summary> /// 窗体控件控制相关的方法 /// </summary> public class ControlTools { private Form frm; public ControlTools(Form frm) { this.frm = frm; } /// <summary> //

  • Winform下实现图片切换特效的方法

    本文实例讲述了Winform下实现图片切换特效的方法,是应用程序开发中非常实用的一个功能.分享给大家供大家参考之用.具体方法如下: 本实例源自网络,功能较为齐全.丰富!主要功能代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Drawin

  • C# WinForm中禁止改变窗口大小的方法

    本文介绍在使用C#开发WinForm窗体程序时,如何设置窗体的大小不能被改变. 我们在开发一个窗体(WinForm)程序时,所有的控件都部署在程序界面上了,如果这时来把窗体的大小调整一下,那界面就难看了.怎么设置窗体大小不能被修改呢? 在Form类下面有一个FormBorderStyle的字段,我们可以通过设置它的值来让窗体不能被拉大拉小.FormBorderStyle的值设置为FormBorderStyle.FixedSingle或Fixed3D时,窗体大小是不能被改变的. 当然,还有一种情况

  • C#实现WinForm捕获最小化事件的方法

    一般来说,虽然Form类没有提供Minimize的事件,但还是可以通过重载Deactive来实现WinForm捕获最小化事件. 实现方法为:当Form失去焦点后,测试WindowState取得Form状态,若为Minimized既是最小化事件. 本例为最小化后隐藏窗口: 还有种方法更加直接,重载WndProc: 实现代码如下: const int WM_SYSCOMMAND = 0x112; const int SC_CLOSE = 0xF060; const int SC_MINIMIZE =

  • WinForm中的几个实用技巧汇总

    本文汇总了几个WinForm中常见的实用技巧,对于C#程序开发有着很好的参考借鉴价值.具体分析如下: 一.屏蔽窗体右上角关闭按钮 1.重写OnClosing protected override void OnClosing(CancelEventArgs e) { if(this.Visible) { e.Cancel=true; // // WHATE TODO // } } 2.重写WndProc protected override void WndProc(ref Message m)

  • WinForm实现为TextBox设置水印文字功能

    本文实例展示了WinForm实现为TextBox设置水印文字功能,非常实用的技巧,分享给大家供大家参考. 关键代码如下: using System; using System.Runtime.InteropServices; using System.Windows.Forms; namespace WinFormUtilHelpV2 { /// <summary> /// 基于.NET 2.0的TextBox工具类 /// </summary> public static cla

  • WinForm相对路径的陷阱

    本文所述为使用WinForm相对路径时需要注意的陷阱.这类错误经常会遇到!现分析如下供大家参考. 在Window系统上利用相对路径进行操作时,有一个"当前目录"的概念,如果程序中是利用相对路径进行操作,系统会认为是在当前目录下进行操作,即 相对路径 等于 当前目录 + 相对路径 所组成的绝对路径. 应用程序默认的当前目录为:程序入口所在路径. 并且在WinForm中,OpenFileDialog.RestoreDirectory 或 SaveFileDialog.SaveFileDia

随机推荐