溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單

發(fā)布時間:2021-09-16 16:18:33 來源:億速云 閱讀:156 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

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

一、目標(biāo)樣式

.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單

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

1.從工具欄上的”Smobiler Components”拖動一個GridView控件到窗體界面上

.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單

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項,并命名為MessageShow3,并拖入一個Label控件,如圖1

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

.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單

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

.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單

二、手機效果顯示

.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單

以上是“.Net語言Smobiler開發(fā)中如何利用Gridview控件設(shè)計表單”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI