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

.Net語言 APP開發平台——Smobiler學習日志:如何實現快速跳轉網頁,appsmobiler

編輯:C#入門知識

.Net語言 APP開發平台——Smobiler學習日志:如何實現快速跳轉網頁,appsmobiler


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

 

 

樣式一

一、跳轉網頁代碼(Button的Click事件)

    Private Sub Button1_Click(sender  As Object, e As EventArgs) Handles Button1.Click

        RedirectUrl("", "www.baidu.com")

    End Sub
   C#:
   private void Button1_Click(object sender, EventArgs e)
   {
        RedirectUrl("", "www.baidu.com");      
   }
            

注:第一個參數是顯示的標題,第二個參數是需要跳轉的網址

二.Smobiler窗體設計界面顯示效果

smobiler

三、手機效果顯示

smobiler smobiler

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