(八十二)c#Winform自定義控制項-穿梭框

来源:https://www.cnblogs.com/bfyx/archive/2019/10/10/11646790.html
-Advertisement-
Play Games

前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 GitHub:https://github.com/kwwwvagaa/NetWinformControl 碼雲:https://gitee.com/kwwwvagaa/net_winform_custom_contr ...


前提

入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。

GitHub:https://github.com/kwwwvagaa/NetWinformControl

碼雲:https://gitee.com/kwwwvagaa/net_winform_custom_control.git

如果覺得寫的還行,請點個 star 支持一下吧

歡迎前來交流探討: 企鵝群568015492 企鵝群568015492

來都來了,點個【推薦】再走吧,謝謝

NuGet

Install-Package HZH_Controls

目錄

https://www.cnblogs.com/bfyx/p/11364884.html

用處及效果

準備工作

這個用到了(一)c#Winform自定義控制項-基類控制項(三)c#Winform自定義控制項-有圖標的按鈕 、 (三十二)c#Winform自定義控制項-表格  不瞭解的可以先移步查看一下

開始

添加一個用戶控制項UCTestTransfer

界面放2個表格,2個按鈕即可

添加屬性

 1  /// <summary>
 2         /// 移動數據事件
 3         /// </summary>
 4         [Description("移動數據事件"), Category("自定義")]
 5         public event TransferEventHandler Transfered;
 6 
 7         /// <summary>
 8         /// The left columns
 9         /// </summary>
10         private DataGridViewColumnEntity[] leftColumns;
11 
12         /// <summary>
13         /// Gets or sets the left columns.
14         /// </summary>
15         /// <value>The left columns.</value>
16         [Description("左側列表列"), Category("自定義")]
17         public DataGridViewColumnEntity[] LeftColumns
18         {
19             get { return leftColumns; }
20             set
21             {
22                 leftColumns = value;
23                 this.dgvLeft.Columns = leftColumns.ToList();
24             }
25         }
26 
27         /// <summary>
28         /// The right columns
29         /// </summary>
30         private DataGridViewColumnEntity[] rightColumns;
31 
32         /// <summary>
33         /// Gets or sets the right columns.
34         /// </summary>
35         /// <value>The right columns.</value>
36         [Description("右側列表列"), Category("自定義")]
37         public DataGridViewColumnEntity[] RightColumns
38         {
39             get { return rightColumns; }
40             set
41             {
42                 rightColumns = value;
43                 this.dgvRight.Columns = leftColumns.ToList();
44             }
45         }
46 
47         /// <summary>
48         /// The left data source
49         /// </summary>
50         private object[] leftDataSource;
51         /// <summary>
52         /// 左右列表必須設置相同類型的數據源列表,如果為空必須為長度為0的數組
53         /// </summary>
54         /// <value>The left data source.</value>
55         [Description("左側列表數據源"), Category("自定義"), Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]
56         public object[] LeftDataSource
57         {
58             get { return leftDataSource; }
59             set
60             {
61                 leftDataSource = value;
62                 dgvLeft.DataSource = value;
63             }
64         }
65 
66         /// <summary>
67         /// The right data source
68         /// </summary>
69         private object[] rightDataSource;
70         /// <summary>
71         /// 左右列表必須設置相同類型的數據源列表,如果為空必須為長度為0的數組
72         /// </summary>
73         /// <value>The left data source.</value>
74         [Description("右側列表數據源"), Category("自定義"), Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]
75         public object[] RightDataSource
76         {
77             get { return rightDataSource; }
78             set
79             {
80                 rightDataSource = value;
81                 dgvRight.DataSource = value;
82             }
83         }

處理左右移動按鈕事件

 1 /// <summary>
 2         /// Handles the BtnClick event of the btnRight control.
 3         /// </summary>
 4         /// <param name="sender">The source of the event.</param>
 5         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 6         /// <exception cref="System.Exception">
 7         /// 左右數據源列表不能為空
 8         /// or
 9         /// 左右數據源列表類型不一致,無法進行操作
10         /// </exception>
11         private void btnRight_BtnClick(object sender, EventArgs e)
12         {
13             if (LeftDataSource == null || RightDataSource == null)
14             {
15                 throw new Exception("左右數據源列表不能為空");
16             }
17             if (LeftDataSource.GetType() != RightDataSource.GetType())
18             {
19                 throw new Exception("左右數據源列表類型不一致,無法進行操作");
20             }
21             if (dgvLeft.SelectRows == null || dgvLeft.SelectRows.Count <= 0)
22                 return;
23             List<object> lst = new List<object>();
24             dgvLeft.SelectRows.ForEach(p =>
25             {
26                 lst.Add(p.DataSource);
27                 p.IsChecked = false;
28             });
29             var lstRight = RightDataSource.ToList();
30             lstRight.AddRange(lst);
31             var lstLeft = LeftDataSource.ToList();
32             lstLeft.RemoveAll(p => lst.Contains(p));
33             RightDataSource = lstRight.ToArray();
34             LeftDataSource = lstLeft.ToArray();
35             if (Transfered != null)
36             {
37                 Transfered(this, new TransferEventArgs() { TransferDataSource = lst.ToArray(), ToRightOrLeft = true });
38             }
39         }
40 
41         /// <summary>
42         /// Handles the BtnClick event of the btnLeft control.
43         /// </summary>
44         /// <param name="sender">The source of the event.</param>
45         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
46         /// <exception cref="System.Exception">
47         /// 左右數據源列表不能為空
48         /// or
49         /// 左右數據源列表類型不一致,無法進行操作
50         /// </exception>
51         private void btnLeft_BtnClick(object sender, EventArgs e)
52         {
53             if (LeftDataSource == null || RightDataSource == null)
54             {
55                 throw new Exception("左右數據源列表不能為空");
56             }
57             if (LeftDataSource.GetType() != RightDataSource.GetType())
58             {
59                 throw new Exception("左右數據源列表類型不一致,無法進行操作");
60             }
61             if (dgvRight.SelectRows == null || dgvRight.SelectRows.Count <= 0)
62                 return;
63             List<object> lst = new List<object>();
64             dgvRight.SelectRows.ForEach(p =>
65             {
66                 lst.Add(p.DataSource);
67                 p.IsChecked = false;
68             });
69             var lstLeft = LeftDataSource.ToList();
70             lstLeft.AddRange(lst);
71             var lstRight = RightDataSource.ToList();
72             lstRight.RemoveAll(p => lst.Contains(p));
73             RightDataSource = lstRight.ToArray();
74             LeftDataSource = lstLeft.ToArray();
75             if (Transfered != null)
76             {
77                 Transfered(this, new TransferEventArgs() { TransferDataSource = lst.ToArray(), ToRightOrLeft = false });
78             }
79         }

完整代碼

  1 // ***********************************************************************
  2 // Assembly         : HZH_Controls
  3 // Created          : 2019-10-10
  4 //
  5 // ***********************************************************************
  6 // <copyright file="UCTransfer.cs">
  7 //     Copyright by Huang Zhenghui(黃正輝) All, QQ group:568015492 QQ:623128629 Email:[email protected]
  8 // </copyright>
  9 //
 10 // Blog: https://www.cnblogs.com/bfyx
 11 // GitHub:https://github.com/kwwwvagaa/NetWinformControl
 12 // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
 13 //
 14 // If you use this code, please keep this note.
 15 // ***********************************************************************
 16 using System;
 17 using System.Collections.Generic;
 18 using System.ComponentModel;
 19 using System.Drawing;
 20 using System.Data;
 21 using System.Linq;
 22 using System.Text;
 23 using System.Windows.Forms;
 24 
 25 namespace HZH_Controls.Controls
 26 {
 27     /// <summary>
 28     /// Class UCTransfer.
 29     /// Implements the <see cref="System.Windows.Forms.UserControl" />
 30     /// </summary>
 31     /// <seealso cref="System.Windows.Forms.UserControl" />
 32     [DefaultEvent("Transfered")]
 33     public partial class UCTransfer : UserControl
 34     {
 35         /// <summary>
 36         /// 移動數據事件
 37         /// </summary>
 38         [Description("移動數據事件"), Category("自定義")]
 39         public event TransferEventHandler Transfered;
 40 
 41         /// <summary>
 42         /// The left columns
 43         /// </summary>
 44         private DataGridViewColumnEntity[] leftColumns;
 45 
 46         /// <summary>
 47         /// Gets or sets the left columns.
 48         /// </summary>
 49         /// <value>The left columns.</value>
 50         [Description("左側列表列"), Category("自定義")]
 51         public DataGridViewColumnEntity[] LeftColumns
 52         {
 53             get { return leftColumns; }
 54             set
 55             {
 56                 leftColumns = value;
 57                 this.dgvLeft.Columns = leftColumns.ToList();
 58             }
 59         }
 60 
 61         /// <summary>
 62         /// The right columns
 63         /// </summary>
 64         private DataGridViewColumnEntity[] rightColumns;
 65 
 66         /// <summary>
 67         /// Gets or sets the right columns.
 68         /// </summary>
 69         /// <value>The right columns.</value>
 70         [Description("右側列表列"), Category("自定義")]
 71         public DataGridViewColumnEntity[] RightColumns
 72         {
 73             get { return rightColumns; }
 74             set
 75             {
 76                 rightColumns = value;
 77                 this.dgvRight.Columns = leftColumns.ToList();
 78             }
 79         }
 80 
 81         /// <summary>
 82         /// The left data source
 83         /// </summary>
 84         private object[] leftDataSource;
 85         /// <summary>
 86         /// 左右列表必須設置相同類型的數據源列表,如果為空必須為長度為0的數組
 87         /// </summary>
 88         /// <value>The left data source.</value>
 89         [Description("左側列表數據源"), Category("自定義"), Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]
 90         public object[] LeftDataSource
 91         {
 92             get { return leftDataSource; }
 93             set
 94             {
 95                 leftDataSource = value;
 96                 dgvLeft.DataSource = value;
 97             }
 98         }
 99 
100         /// <summary>
101         /// The right data source
102         /// </summary>
103         private object[] rightDataSource;
104         /// <summary>
105         /// 左右列表必須設置相同類型的數據源列表,如果為空必須為長度為0的數組
106         /// </summary>
107         /// <value>The left data source.</value>
108         [Description("右側列表數據源"), Category("自定義"), Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]
109         public object[] RightDataSource
110         {
111             get { return rightDataSource; }
112             set
113             {
114                 rightDataSource = value;
115                 dgvRight.DataSource = value;
116             }
117         }
118 
119         /// <summary>
120         /// Initializes a new instance of the <see cref="UCTransfer"/> class.
121         /// </summary>
122         public UCTransfer()
123         {
124             InitializeComponent();
125             dgvLeft.IsCloseAutoHeight = true;
126             dgvRight.IsCloseAutoHeight = true;
127             LeftColumns = new DataGridViewColumnEntity[0];
128             RightColumns = new DataGridViewColumnEntity[0];
129             LeftDataSource = new object[0];
130             RightDataSource = new object[0];
131         }
132 
133         /// <summary>
134         /// Handles the BtnClick event of the btnRight control.
135         /// </summary>
136         /// <param name="sender">The source of the event.</param>
137         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
138         /// <exception cref="System.Exception">
139         /// 左右數據源列表不能為空
140         /// or
141         /// 左右數據源列表類型不一致,無法進行操作
142         /// </exception>
143         private void btnRight_BtnClick(object sender, EventArgs e)
144         {
145             if (LeftDataSource == null || RightDataSource == null)
146             {
147                 throw new Exception("左右數據源列表不能為空");
148             }
149             if (LeftDataSource.GetType() != RightDataSource.GetType())
150             {
151                 throw new Exception("左右數據源列表類型不一致,無法進行操作");
152             }
153             if (dgvLeft.SelectRows == null || dgvLeft.SelectRows.Count <= 0)
154                 return;
155             List<object> lst = new List<object>();
156             dgvLeft.SelectRows.ForEach(p =>
157             {
158                 lst.Add(p.DataSource);
159                 p.IsChecked = false;
160             });
161             var lstRight = RightDataSource.ToList();
162             lstRight.AddRange(lst);
163             var lstLeft = LeftDataSource.ToList();
164             lstLeft.RemoveAll(p => lst.Contains(p));
165             RightDataSource = lstRight.ToArray();
166             LeftDataSource = lstLeft.ToArray();
167             if (Transfered != null)
168             {
169                 Transfered(this, new TransferEventArgs() { TransferDataSource = lst.ToArray(), ToRightOrLeft = true });
170             }
171         }
172 
173         /// <summary>
174         /// Handles the BtnClick event of the btnLeft control.
175         /// </summary>
176         /// <param name="sender">The source of the event.</param>
177         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
178         /// <exception cref="System.Exception">
179         /// 左右數據源列表不能為空
180         /// or
181         /// 左右數據源列表類型不一致,無法進行操作
182         /// </exception>
183         private void btnLeft_BtnClick(object sender, EventArgs e)
184         {
185             if (LeftDataSource == null || RightDataSource == null)
186             {
187                 throw new Exception("左右數據源列表不能為空");
188             }
189             if (LeftDataSource.GetType() != RightDataSource.GetType())
190             {
191                 throw new Exception("左右數據源列表類型不一致,無法進行操作");
192             }
193             if (dgvRight.SelectRows == null || dgvRight.SelectRows.Count <= 0)
194                 return;
195             List<object> lst = new List<object>();
196             dgvRight.SelectRows.ForEach(p =>
197             {
198                 lst.Add(p.DataSource);
199                 p.IsChecked = false;
200             });
201             var lstLeft = LeftDataSource.ToList();
202             lstLeft.AddRange(lst);
203             var lstRight = RightDataSource.ToList();
204             lstRight.RemoveAll(p => lst.Contains(p));
205             RightDataSource = lstRight.ToArray();
206             LeftDataSource = lstLeft.ToArray();
207             if (Transfered != null)
208             {
209                 Transfered(this, new TransferEventArgs() { TransferDataSource = lst.ToArray(), ToRightOrLeft = false });
210             }
211         }
212     }
213 }

 

最後的話

如果你喜歡的話,請到 https://gitee.com/kwwwvagaa/net_winform_custom_control 點個星星吧


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • String類的幾個方法的應用示例: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ConsoleAp ...
  • 有很多人在找客戶過程中遇到了一些問題,有些網站,有些系統裡面經常會把手機號碼的中間四位屏蔽掉 中國的手機號是11位,知道手機的前三位,後四位如何補全中間四位,其實是有軟體可以做到的 前提知道這個號碼是哪個地方的,如果不知道那數據量就太龐大了,先看看軟體圖 因為涉及到號碼的隱私我就塗掉了,使用很簡單, ...
  • //實體類 [Table("invoiceinfo", Schema = "obs")] public class invoice { [Key] public string invoice_num { get; set; } public string merchant_id { get; set... ...
  • 場景 表示時間的數據格式為浮點數,如下: 需要將其格式化為{H:min:s.ms}格式的字元串,效果如下: 註: 博客主頁:https://blog.csdn.net/badao_liumang_qizhi 關註公眾號 霸道的程式猿 獲取編程相關電子書、教程推送與免費下載。 實現 效果 ...
  • 千呼萬喚始出來, asp.net core 3.0 更新簡記 ...
  • 點這裡進入ABP進階教程目錄 更新數據傳輸對象 打開應用層(即JD.CRS.Application)的Course\Dto\GetAllCoursesInput.cs //Course數據傳輸對象(查詢條件) 增加一行代碼 1 using Abp.Application.Services.Dto; ...
  • 一、問題 該問題經常出現在 ABP vNext 框架當中,要復現該問題十分簡單,只需要你註入一個 倉儲,在任意一個地方調用 方法。 例如上面的測試代碼,不出意外就會提示 異常,具體的異常內容信息: 其實已經說得十分明白了,因為你要調用的 已經被釋放了,所以會出現這個異常信息。 二、原因 2.1 為什 ...
  • 整理一下昨天學習的泛型,有不對的地方歡迎指正: 定義一個類,這個類中某些欄位的類型不確定,這些類型可以在構造類時確定下來 2.泛型方法 泛型方法就是定義一個方法,這個方法的參數類型可以是不確定的,當調用這個方法時再去確定這個方法參數的類型。 T作為類型參數也是一個占位符在泛型中,例: 3.泛型解析: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...