C#WinForm datagridview控制項一選選一整行的效果實現時,取消第一行預設被選取的副效果

來源:互聯網
上載者:User

標籤:

1 UI

 

 

2 code

 

 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Threading.Tasks; 9 using System.Windows.Forms;10 using System.Xml.Linq;11 12 namespace WindowsFormsApplication313 {14     public partial class Form1 : Form15     {16         public Form1()17         {18             InitializeComponent();19         }20 21         List<User> datas = new List<User>();22 23         private void Form1_Load(object sender, EventArgs e)24         {25             LoadXmlFile();26 27 28             ///////////////////////////////////////////////////29             //取消第一行預設被選中的負效果30             dataGridView1.SelectedRows[0].Selected = false;31             ///////////////////////////////////////////////////32 33         }34 35         private void LoadXmlFile()36         {37             //form 表單在載入的時候,讀取xml檔案38             XDocument xmlFile = XDocument.Load("1.xml");39             XElement root = xmlFile.Root;40 41             foreach (var item in root.Elements())42             {43                 datas.Add(new User() { ShengHao = item.Element("ShengHao").Value, Password = item.Element("Password").Value });44             }45 46             //將list資料與datagridview綁定47             dataGridView1.DataSource = datas;48 49         }50     }51 }

 

 

3 show

 

C#WinForm datagridview控制項一選選一整行的效果實現時,取消第一行預設被選取的副效果

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.