程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> .Net語言 APP開發平台——Smobiler學習日志:如何快速在手機上實現ContextMenu,.net

.Net語言 APP開發平台——Smobiler學習日志:如何快速在手機上實現ContextMenu,.net

編輯:C#入門知識

.Net語言 APP開發平台——Smobiler學習日志:如何快速在手機上實現ContextMenu,.net


最前面的話:Smobiler是一個在VS環境中使用.Net語言來開發APP的開發平台,也許比Xamarin更方便

 

樣式一

一、目標樣式

smobiler

我們要實現上圖中的效果,需要如下的操作:

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

smobiler

2.修改GridView控件的屬性

a.load事件代碼

VB:
    Private Sub TestContextMenu_Load(sender As Object, e As EventArgs)Handles MyBase.Load
        Dim matTable As New DataTable
        matTable.Columns.Add("MAT_IMG", GetType(String))
        matTable.Columns.Add("MAT_DESC1", GetType(String))
        matTable.Rows.Add()
        matTable.Rows(0)("MAT_IMG") = "log"
        matTable.Rows(0)("MAT_DESC1") = "COMS"
        matTable.Rows.Add()
        matTable.Rows(1)("MAT_IMG") = "logon"
        matTable.Rows(1)("MAT_DESC1") = "smobiler"       
        Me.gridView1.DataSource = matTable
        Me.gridView1.DataBind()
        
    End Sub
C#:
    private void TestContextMenu_Load(object sender, EventArgs e)
    {
        DataTable matTable = new DataTable();
        matTable.Columns.Add("MAT_IMG", typeof(string));
        matTable.Columns.Add("MAT_DESC1", typeof(string));
        matTable.Rows.Add();
        matTable.Rows[0]["MAT_IMG"] = "log";
        matTable.Rows[0]["MAT_DESC1"] = "COMS";
        matTable.Rows.Add();
        matTable.Rows[1]["MAT_IMG"] = "logon";
        matTable.Rows[1]["MAT_DESC1"] = "smobiler";
        this.gridView1.DataSource = matTable;
        this.gridView1.DataBind();
    }

b.CellLongClick事件代碼

VB:
   Private Sub gridView1_CellLongClick(sender As Object, e As GridViewCellEventArgs) Handles gridView1.CellLongClick
       contextMenu1.Show()
   End Sub
C#:
   private void gridView1_CellLongClick(object sender, GridViewCellEventArgs e)
   {
       contextMenu1.Show();
   }

注:調用ContextMenu控件

c.Layout屬性

新創建MobileForm項,並命名為MessageShow,並拖入一個Label控件和一個Image控件,如圖1;

Label1的DataMember屬性(綁定需要顯示的列),如圖2;

contextmenu的Layout屬性,綁定新建的窗體MessageShow1,如圖3;

smobiler smobiler smobiler 圖1 圖2 圖3

3.修改ContextMenu控件的屬性

a.BackColor屬性

獲取或設置ContextMenuItem的背景,默認設置為“White”,如圖1;

b.Items屬性

打開集合編輯器,並點擊"添加",ForeColor屬性(文本顏色),Icon屬性(Item的Icon圖像資源),Text屬性(Item的文本),Value屬性(內部值,不在界面上顯示),如圖2、圖3;

c.ShowPosition屬性

設置ContextMenu顯示的位置,默認設置為“LastTouch”,表示顯示在最後觸摸的地方,如圖4;

若將該屬性設置為“CenterScreen”,則表示顯示在屏幕中心。

BackColor屬性 Items屬性 Items屬性 ShowPosition屬性 圖1 圖2 圖3 圖4

二、手機效果顯示

smobiler smobiler

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved