WinCE下的C#開發,備忘錄

來源:互聯網
上載者:User
類型轉換:
字串轉整型:System.Int32.Parse(字串)字串轉日期:日期文字.ToString("yyyy-MM-dd hh:mm:ss")
下拉框賦值
ArrayList list = new ArrayList();list.Add(new DictionaryEntry(1, "進入"));list.Add(new DictionaryEntry(2, "離開"));   comboBox1.DataSource = list;comboBox1.DisplayMember = "Value";comboBox1.ValueMember = "Key";     
擷取下拉框的值
string crlb = this.comboBox1.SelectedValue.ToString() +"," + this.comboBox1.Text;
ListView擷取CheckBox為選中狀態的Item,以及刪除Item
for (int i = 0; i < this.listView2.Items.Count; i++){    if (listView2.Items[i].Checked == true)// 如果為選中狀態    {        ckvalue += this.listView2.Items[i].SubItems[3].Text + ",";// 取值        this.listView2.Items.Remove(this.listView2.Items[i]);// 刪除選中行    }}
List轉為數組
List<ryBean> rys = new List<ryBean>();ryBean[] rysArr = rys.ToArray();



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.