csharp: Setting the value of properties reflection

来源:https://www.cnblogs.com/geovindu/archive/2018/03/22/8622508.html
-Advertisement-
Play Games

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.... ...


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using System.IO;

namespace WinPropertyInfo
{


    /// <summary>
    /// Geovin Du
    /// </summary>
    public partial class Form1 : Form
    {


        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        DataTable setData()
        {
            Image img = Image.FromFile(@"C:\Documents and Settings\geovindu\My Documents\My Pictures\sqlanywhereODBC20180208160133.png");

            DataTable dt = new DataTable();
            dt.Columns.Add("MyName", typeof(string));
            dt.Columns.Add("IsJob", typeof(bool));
            dt.Columns.Add("Salary", typeof(float));
            dt.Columns.Add("Bonus", typeof(double));
            dt.Columns.Add("Insurance", typeof(decimal));
            dt.Columns.Add("Age", typeof(int));
            dt.Columns.Add("Photo", typeof(Image));
            dt.Columns.Add("Birthaday", typeof(DateTime));
            //dt.Columns.Add("", typeof(bool));
            dt.Rows.Add("geovindu", true, -950, 1789.03, 78.09, 79, img, DateTime.Now);
            dt.Rows.Add("塗聚文", true, -8950, 789.03, 5178.09, 29, img, DateTime.Now);


            return dt;
        }



        /// <summary>
        /// 
        /// </summary>
        public Form1()
        {
            InitializeComponent();
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Form1_Load(object sender, EventArgs e)
        {
            List<GeovinDuInfo> list = new List<GeovinDuInfo>();
            Image img = Image.FromFile(@"C:\Documents and Settings\geovindu\My Documents\My Pictures\sqlanywhereODBC20180208160133.png",false);
            byte[] imgbyt = ToByteArray(img);

            try
            {
                //GeovinDuInfo info = new GeovinDuInfo();
                //SetPropertyValue(info, "MyName", "geovindu");
                //SetPropertyValue(info, "IsJob", true);
                //SetPropertyValue(info, "Salary", -850);
                //SetPropertyValue(info, "Bonus", 78.02);
                //SetPropertyValue(info, "Insurance", 78.02);
                //SetPropertyValue(info, "Age", 78);
                //SetPropertyValue(info, "Photo", imgbyt);  //不可賦值
                //SetPropertyValue(info, "Birthaday", DateTime.Now);
                //list.Add(info);
                DataTable dt = setData();
                if (dt.Rows.Count > 0)
                {
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        GeovinDuInfo info = DataRowToModel(dt.Rows[i]);
                        list.Add(info);
                    }
                }

                this.dataGridView1.DataSource = list;//setData();// 
                
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message.ToString());
            }

        }


        /// <summary>
        /// 賦值
        /// </summary>
        /// <param name="obj"></param>
        /// <param name="propertyName"></param>
        /// <param name="propertyValue"></param>
        public static void SetPropertyValue(object obj, string propertyName, object propertyValue)
        {
            if (obj == null || string.IsNullOrEmpty(propertyName))  //IsNullOrWhiteSpace
            {
                return;
            }
            Type objectType = obj.GetType();

            PropertyInfo propertyDetail = objectType.GetProperty(propertyName);


            if (propertyDetail != null && propertyDetail.CanWrite)
            {
                Type propertyType = propertyDetail.PropertyType;

                Type dataType = propertyType;

                // Check for nullable types
                if (propertyType.IsGenericType && propertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
                {
                    // Check for null or empty string value.
                    if (propertyValue == null || string.IsNullOrEmpty(propertyValue.ToString()))
                    {
                        propertyDetail.SetValue(obj, null,null);
                        return;
                    }
                    else
                    {
                        dataType = propertyType.GetGenericArguments()[0];
                    }
                }

                propertyValue = Convert.ChangeType(propertyValue, propertyType);

                propertyDetail.SetValue(obj, propertyValue,null);

            }
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="data"></param>
        /// <returns></returns>
        public bool ValidateData(object data)
        {
            foreach (PropertyInfo propertyInfo in data.GetType().GetProperties())
            {
                if (propertyInfo.PropertyType == typeof(string))
                {
                    string value = propertyInfo.GetValue(data, null);
                    if (value == "geovindu")
                    {
                        return false;
                    }

                }
            }            

            return true;
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="row"></param>
        /// <returns></returns>
        public GeovinDuInfo DataRowToModel(DataRow row)
        {
            GeovinDuInfo model = new GeovinDuInfo();
            if (row != null)
            {
                //利用反射獲得屬性的所有公共屬性 
                Type modelType = model.GetType();

                for (int i = 0; i < row.Table.Columns.Count; i++)
                {
                    //查找實體是否存在列表相同的公共屬性
                    PropertyInfo proInfo = modelType.GetProperty(row.Table.Columns[i].ColumnName);

                    Type propertyType = proInfo.PropertyType;

                    Type dataType = propertyType;

                    if (proInfo != null && row[i] != DBNull.Value)
                    {
                        if (proInfo != null && proInfo.CanWrite)
                        {

                        }
                        if (dataType.Equals(typeof(Single)))  //要考慮數據類型,否則會出錯
                        {
                            //propertyValue = Convert.ToSingle(propertyValue);
                            proInfo.SetValue(model, Convert.ToSingle(row[i]), null); //float類型轉換
                        }
                        else if (dataType.Equals(typeof(Double)))
                        {
                            proInfo.SetValue(model, Convert.ToDouble(row[i]), null);
                        }
                        else if (dataType.Equals(typeof(Boolean)))
                        {
                            proInfo.SetValue(model, Convert.ToBoolean(row[i], null));
                        }
                        else if (dataType.Equals(typeof(Int32)))
                        {
                            proInfo.SetValue(model,Convert.ToInt32(row[i],null));
                        }
                        else if (dataType.Equals(typeof(Decimal)))
                        {
                            proInfo.SetValue(model, Convert.ToDecimal(row[i], null));
                        }
                        else
                        {
                            //proInfo.SetValue(model, Convert.ChangeType(row[i], propertyType), null);
                            proInfo.SetValue(model, row[i], null);//用索引值設置屬性值 負數  float
                        }

                        

                    }
                }
            }
            return model;
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button1_Click(object sender, EventArgs e)
        {

        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="imageIn"></param>
        /// <returns></returns>
          public static byte[] ToByteArray(Image imageIn)
         {
            MemoryStream ms = new MemoryStream();
            imageIn.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
            return ms.ToArray();
         }

            //Convert byte[] array to Image:
        /// <summary>
        /// 
        /// </summary>
        /// <param name="byteArrayIn"></param>
        /// <returns></returns>
        public static Image ToImage(byte[] byteArrayIn)
        {
            MemoryStream ms = new MemoryStream(byteArrayIn);
            Image returnImage = Image.FromStream(ms);
            return returnImage;
        }


    }
    /// <summary>
    /// 塗聚文 塗聚文
    /// Geovin Du
    /// 
    /// </summary>
    public class GeovinDuInfo
    {


        private string _MyName = string.Empty;
        /// <summary>
        /// 
        /// </summary>
        public string MyName
        {
            get { return _MyName; }
            set { _MyName = value; }
        }
        private bool _IsJob = true;
        /// <summary>
        /// 
        /// </summary>
        public bool IsJob
        {
            get { return _IsJob; }
            set { _IsJob = value; }
        }

        private float _Salary = 0;
        /// <summary>
        /// 
        /// </summary>
        public float Salary
        {
            get { return _Salary; }
            set { _Salary = value; }
        }

        private double _Bonus = 0.00;
        /// <summary>
        /// 
        /// </summary>
        public double Bonus
        {
            get { return _Bonus; }
            set { _Bonus = value; }
        }

        private decimal _Insurance;
        /// <summary>
        /// 
        /// </summary>
        public decimal Insurance
        {
            get { return _Insurance; }
            set { _Insurance = value; }
        }



        private int _Age = 0;
        /// <summary>
        /// 
        /// </summary>
        public int Age
        {

            get { return _Age; }
            set { _Age = value; }  
        }

        private Image _Photo;
        /// <summary>
        /// 
        /// </summary>
        public Image Photo
        {
            get { return _Photo; }
            set { _Photo = value; }
        }

        private DateTime _Birthaday = DateTime.Now;
        /// <summary>
        /// 
        /// </summary>
        public DateTime Birthaday
        {
            get { return _Birthaday; }
            set { _Birthaday = value; }
        }


    }

}

  


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

-Advertisement-
Play Games
更多相關文章
  • 在視窗屬性界面添加事件服務 ...
  • 最近用EF做了幾個小東西,瞭解簡單使用後有了深入研究的興趣,所以想系統的研究一下EF CodeFist的幾個要點。下麵簡單列一下目錄 1.1 目錄 1. 資料庫初始化策略和數據遷移Migration的簡單介紹 3. 配置一對一關係 4. 配置一對多關係 5. 配置多對多關係 6. 開發環境配置Mig ...
  • 對於主外鍵約定的理解,其實是學習實體間一對一和一對多關係的基礎。 1.1 主鍵(Key)約定 主鍵的預設約定是: 只要欄位名為 實體名(類名)+"id"(不區分大小寫) ,這就算是預設的主鍵約定。 如果要顯示標識的話,就使用特性標簽進行標識: 這樣標識的主鍵,在資料庫的名稱就是 StudentKey ...
  • 1.需求 WPF本身沒有直接把點集合繪製成曲線的函數。可以通過貝塞爾曲線函數來繪製。 貝塞爾曲線類是:BezierSegment,三次貝塞爾曲線,通過兩個控制點來控制開始和結束方向。 QuadraticBezierSegment,二次貝塞爾,通過一個控制點來控制彎曲方向。 本文使用的是三次。 圖片來 ...
  • 1,進入nginx的html目錄 vim ./crossdomain.xml 具體路徑: /usr/local/nginx/html/crossdomain.xml 2,在crossdomain.xml中添加: 1 2 3 4 5 6 結果就是: 註意:預設/usr/local/nginx/html ...
  • 在安裝 nginx 伺服器後,我想把網站的根目錄設置為 /root/www/ ,於是對 nginx 的 nginx.conf 文件進行配置 先打開 nginx.conf #user nobody; worker_processes 1; #error_log logs/error.log; #err ...
  • 概述 前面一篇 About Windows 10 SDK Preview Build 17110 中,我們簡單介紹了 Multi-instance UWP Apps,今天結合開發過程詳細講解一下。 在 Windows 10 Version 1803 以前,UWP App 同一時間只能啟動一個實例,而 ...
  • Unity C#開發中,常常用到Enum或Struct等類型作為Dictionary的key,或List的元素,即: List<EnumType>,Dictionary<EnumType, ValueType>,List<StructType>,Dictionary<StructType, Valu ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...