Windows Phone開發之ToastPrompt測試Demo與Coding4Fun效果對比(有圖有真相)

來源:互聯網
上載者:User
昨天研究了一下Coding4Fun的對話方塊,發現還是太複雜,不符合我的風格,簡單、低調就好。於是順便看了一下ToastPrompt,然後做了一個物件導向封裝

首先程式碼片段

        /// <summary>        /// 資訊提示        /// </summary>        /// <param name="content">提示的資訊內容</param>        /// <param name="title">提示的標題</param>        /// <param name="timeout">提示訊息的顯示到期時間。單位毫秒</param>        public void Coding4FunForMsg(string content, string title, int timeout)        {            SolidColorBrush White = new SolidColorBrush(Colors.White);            SolidColorBrush Red = new SolidColorBrush(Colors.Brown);            ToastPrompt toast = new ToastPrompt            {                Background = Red,                IsTimerEnabled = true,                IsAppBarVisible = true,                 MillisecondsUntilHidden = timeout,                Foreground = White,            };            toast.Title = title;            toast.Message = content;            toast.TextOrientation = System.Windows.Controls.Orientation.Horizontal;            toast.Show();        }

其次調用:

 new Classes.Util.Msg().Coding4FunForMsg("this is content", "Title", 3000);

最後:(對比昨天的對話方塊,簡直帥多了)

這是昨天的:點擊開啟昨天的部落格文章連結

這是上面代碼的實現:

結論:差異巨大,效果明顯。手機顯示小,但是人性化的提示和操作還是會贏得使用者體驗的!

相關文章

聯繫我們

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