Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
235
creating a basic example with xamHtmlViewer
posted
Hi, I am trying to create a very basic example with xamHtml control, but somehow the html content is not showing in the control. this is my xaml: and my xaml.cs file: using System.Windows.Controls; namespace HtmlTest { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); this.xamHtmlViewer1.HtmlCode = "This is my test page"; } } } Please let me know what's the error, as it just shows up blank page with no content in it.