Windows Phone中擴充WebBrowser使其支援綁定html內容

來源:互聯網
上載者:User

標籤:style   blog   color   os   ar   使用   sp   div   on   

在WP開發中,有時候會用到WebBrowser控制項來展示一些html內容,這個控制項有很多局限性,比如不支援綁定內容,這樣的MVVM模式中就無法進行內容的綁定。為了實現這個目的,需要擴充一下,具體代碼如下:

/// <summary>    /// 用於綁定WebBrowser控制項的html內容 用法:ext:WebBrowserProperties.Body="{Binding CurrentArticleItem.Html}"    /// </summary>    public class WebBrowserProperties    {        public static readonly DependencyProperty BodyProperty =            DependencyProperty.RegisterAttached("Body", typeof(string), typeof(WebBrowserProperties), new PropertyMetadata(OnBodyChanged));        public static string GetBody(DependencyObject dependencyObject)        {            return (string)dependencyObject.GetValue(BodyProperty);        }        public static void SetBody(DependencyObject dependencyObject, string body)        {            dependencyObject.SetValue(BodyProperty, body);        }        private static void OnBodyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)        {            var webBrowser = (WebBrowser)d;            webBrowser.NavigateToString((string)e.NewValue);        }    }

使用時,在XAML代碼中加上如下的部分

ext:WebBrowserProperties.Body="{Binding CurrentArticleItem.Html}"

就可以支援綁定了。

Windows Phone中擴充WebBrowser使其支援綁定html內容

相關文章

聯繫我們

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