Windows Phone 7玻璃框訊息提示

來源:互聯網
上載者:User

在上一篇部落格《Windows Phone 7 最新的開發工具庫》中介紹了Phoney項目 ,其中就有介紹到一個淡入淡出的訊息提示,本文將擴充下這個訊息提示,即讓 提示訊息出現玻璃邊框,類似於Windows 7表單的效果。

先來看下運行後的效果:

其實說穿了無非就是給彈出框加上玻璃樣式。

具體的改法如下:

開啟PhoneyTools項目下的FadingMessage.cs檔案,找到其中的 StandardMessage方法,添加如下代碼即可

#region 邊框        LinearGradientBrush brush = new LinearGradientBrush();        brush.EndPoint = new Point(0.5, 1);        brush.StartPoint = new Point(0.5, 0);        GradientStop gs1 = new GradientStop();        gs1.Color = Color.FromArgb(58, 11, 32, 45);        gs1.Offset = 0;        GradientStop gs2 = new GradientStop();        gs2.Color = Color.FromArgb(62, 255, 255, 255);        gs2.Offset = 0.25;        GradientStop gs3 = new GradientStop();        gs3.Color = Color.FromArgb(255, 255, 255, 255);        gs3.Offset = 0.5;        GradientStop gs4 = new GradientStop();        gs4.Color = Color.FromArgb(62, 255, 255, 255);        gs4.Offset = 0.75;        GradientStop gs5 = new GradientStop();        gs5.Color = Color.FromArgb(191, 255, 255, 255);        gs5.Offset = 1;        GradientStopCollection gsc = new GradientStopCollection();        gsc.Add(gs1);        gsc.Add(gs2);        gsc.Add(gs3);        gsc.Add(gs4);        gsc.Add(gs5);        brush.GradientStops = gsc;        #endregion        #region 背景        LinearGradientBrush brushForbg = new LinearGradientBrush();        brushForbg.EndPoint = new Point(0.5, 1);        brushForbg.StartPoint = new Point(0.5, 0);        GradientStop gsBg1 = new GradientStop();        gsBg1.Color = Color.FromArgb(33, 255, 255, 255);        gsBg1.Offset = 0;        GradientStop gsBg2 = new GradientStop();        gsBg2.Color = Color.FromArgb(192, 255, 255, 255);        gsBg2.Offset = 0.287;        GradientStop gsBg3 = new GradientStop();        gsBg3.Color = Color.FromArgb(255, 255, 255, 255);        gsBg3.Offset = 0.683;        GradientStop gsBg4 = new GradientStop();        gsBg4.Color = Color.FromArgb(33, 255, 255, 255);        gsBg4.Offset = 1;        GradientStopCollection gsc2 = new GradientStopCollection();        gsc2.Add(gsBg1);        gsc2.Add(gsBg2);        gsc2.Add(gsBg3);        gsc2.Add(gsBg4);        brushForbg.GradientStops = gsc2;        #endregion      var theContainer = new Border()      {        //Background = PhoneBrushes.PhoneContrastBackgroundBrush,        //BorderBrush = PhoneBrushes.PhoneBorderBrush,        Background =brushForbg,//修改為透明背景        BorderBrush = brush,//修改為玻璃邊框        BorderThickness = PhoneThicknesses.PhoneBorderThickness,        CornerRadius = new CornerRadius(5)      };

相關文章

聯繫我們

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