欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

.Net語言Smobiler開發(fā)利用Gridview控件設(shè)計(jì)較復(fù)雜的表單

 更新時(shí)間:2016年09月09日 13:51:06   作者:阿曼達(dá)  
這篇文章主要為大家詳細(xì)介紹了.Net語言Smobiler開發(fā)利用Gridview控件設(shè)計(jì)較復(fù)雜的表單,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

最前面的話:Smobiler是一個(gè)在VS環(huán)境中使用.Net語言來開發(fā)APP的開發(fā)平臺(tái),也許比Xamarin更方便。

一、目標(biāo)樣式

我們要實(shí)現(xiàn)上圖中的效果,需要如下的操作:

1.從工具欄上的”Smobiler Components”拖動(dòng)一個(gè)GridView控件到窗體界面上

2.修改GridView控件的屬性

a.load事件代碼
 VB:

  Private Sub TestGridView3_Load(senderAs Object, e As EventArgs)Handles MyBase.Load
    Dim matTable As New DataTable
    With matTable 
    .Columns.Add("MAT_IMG", GetType(String))
    .Columns.Add("MAT_DESC1", GetType(String))
    .Columns.Add("MAT_DESC2", GetType(String))
    .Columns.Add("MAT_DESC3", GetType(String))
    .Rows.Add()
    .Rows(0)("MAT_IMG") = "img97"
    .Rows(0)("MAT_DESC1") = "¥69.00"
    .Rows(0)("MAT_DESC2") = "2015/07/08"
    .Rows(0)("MAT_DESC3") = "1張發(fā)票"
    .Rows.Add()
    .Rows(1)("MAT_IMG") = "img96"
    .Rows(1)("MAT_DESC1") = "¥39.00"
    .Rows(1)("MAT_DESC2") = "2015/07/08"
    .Rows(1)("MAT_DESC3") = "1張發(fā)票"
    .Rows.Add()
    .Rows(2)("MAT_IMG") = "img95"
    .Rows(2)("MAT_DESC1") = "¥280.00"
    .Rows(2)("MAT_DESC2") = "2015/07/08"
    .Rows(2)("MAT_DESC3") = "1張發(fā)票"
    End With
    Me.GridView1.DataSource = matTable
    Me.GridView1.DataBind()
  End Sub C#:
  private void TestGridView3_Load(object sender, EventArgs e)
  {
    DataTable matTable = new DataTable();
    matTable.Columns.Add("MAT_IMG", typeof(string));
    matTable.Columns.Add("MAT_DESC1", typeof(string));
    matTable.Columns.Add("MAT_DESC2", typeof(string));
    matTable.Columns.Add("MAT_DESC3", typeof(string));
    matTable.Rows.Add();
    matTable.Rows[0]["MAT_IMG"] = "img97";
    matTable.Rows[0]["MAT_DESC1"] = "¥69.00";
    matTable.Rows[0]["MAT_DESC2"] = "2015/07/08";
    matTable.Rows[0]["MAT_DESC3"] = "1張發(fā)票";
    matTable.Rows.Add();
    matTable.Rows[1]["MAT_IMG"] = "img96";
    matTable.Rows[1]["MAT_DESC1"] = "¥39.00";
    matTable.Rows[1]["MAT_DESC2"] = "2015/07/08";
    matTable.Rows[1]["MAT_DESC3"] = "1張發(fā)票";
    matTable.Rows.Add();
    matTable.Rows[2]["MAT_IMG"] = "img95";
    matTable.Rows[2]["MAT_DESC1"] = "¥280.00";
    matTable.Rows[2]["MAT_DESC2"] = "2015/07/08";
    matTable.Rows[2]["MAT_DESC3"] = "1張發(fā)票";
    this.GridView1.DataSource = matTable;
    this.GridView1.DataBind();
  }

b.Layout屬性

新創(chuàng)建MobileForm項(xiàng),并命名為MessageShow3,并拖入一個(gè)Label控件,如圖1

GridView的Layout屬性,綁定新建的窗體MessageShow3,如圖2

3.Smobiler窗體設(shè)計(jì)界面顯示效果

二、手機(jī)效果顯示

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論