<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Opensilver on XAML.io Blog</title>
        <link>https://blog.xaml.io/tags/opensilver/</link>
        <description>Recent content in Opensilver on XAML.io Blog</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en-us</language>
        <lastBuildDate>Wed, 18 Feb 2026 10:00:00 +0100</lastBuildDate><atom:link href="https://blog.xaml.io/tags/opensilver/index.xml" rel="self" type="application/rss+xml" /><item>
            <title>XAML.io: a .NET IDE That Runs in the Browser, With No Backend</title>
            <link>https://blog.xaml.io/post/dotnet-ide-in-the-browser-no-backend/</link>
            <pubDate>Wed, 18 Feb 2026 10:00:00 +0100</pubDate>
            <guid>https://blog.xaml.io/post/dotnet-ide-in-the-browser-no-backend/</guid>
            <description>&lt;img src=&#34;https://blog.xaml.io/&#34; alt=&#34;Featured image of post XAML.io: a .NET IDE That Runs in the Browser, With No Backend&#34; /&gt;&lt;p&gt;We built a browser-based IDE where .NET compilation runs entirely client-side via WebAssembly. The C# compiler itself runs in the browser. When you click Run, your code is compiled locally in the browser tab, using the same .NET WebAssembly runtime that Blazor applications use. Nothing is sent to a server. There is no round-trip, no cold start, and no build queue.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://blog.xaml.io/post/dotnet-ide-in-the-browser-no-backend/ide-overview.png&#34;&#xA;&#x9;width=&#34;2360&#34;&#xA;&#x9;height=&#34;1501&#34;&#xA;&#x9;loading=&#34;lazy&#34;&#xA;&#x9;&#xA;&#x9;&#x9;alt=&#34;The browser-based IDE showing Solution Explorer, code editor, and visual designer.&#34;&#xA;&#x9;&#xA;    &#xA;&#x9;&#xA;&#x9;&#x9;class=&#34;gallery-image&#34; &#xA;&#x9;&#x9;data-flex-grow=&#34;157&#34;&#xA;&#x9;&#x9;data-flex-basis=&#34;377px&#34;&#xA;&#x9;&#xA;&gt;&lt;/p&gt;&#xA;&lt;p&gt;When you open xaml.io, a default project loads with the structure of a WPF application (WPF is the standard desktop GUI framework for .NET): &lt;code&gt;MainWindow.xaml&lt;/code&gt;, &lt;code&gt;MainWindow.xaml.cs&lt;/code&gt;, &lt;code&gt;App.xaml&lt;/code&gt; with a &lt;code&gt;StartupUri&lt;/code&gt;. The XAML syntax is WPF syntax, so existing knowledge transfers directly (a growing subset of WPF APIs is supported, with more added in each release).&lt;/p&gt;&#xA;&lt;p&gt;The IDE includes a visual drag-and-drop designer with over 100 XAML controls. It is not a preview pane: it is a two-way design surface. Drag a control from the toolbox onto the canvas, and the corresponding XAML is generated. Edit the XAML, and the designer updates. Double-click a Button, and a &lt;code&gt;Click&lt;/code&gt; event handler is generated in the C# code-behind file. The designer supports Grid, StackPanel, Canvas, DockPanel, and other WPF layout panels, with property editing for margins, alignments, row/column definitions, and data bindings.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://blog.xaml.io/post/dotnet-ide-in-the-browser-no-backend/designer-properties.png&#34;&#xA;&#x9;width=&#34;1526&#34;&#xA;&#x9;height=&#34;882&#34;&#xA;&#x9;loading=&#34;lazy&#34;&#xA;&#x9;&#xA;&#x9;&#x9;alt=&#34;Selecting a control in the designer and editing its properties.&#34;&#xA;&#x9;&#xA;    &#xA;&#x9;&#xA;&#x9;&#x9;class=&#34;gallery-image&#34; &#xA;&#x9;&#x9;data-flex-grow=&#34;173&#34;&#xA;&#x9;&#x9;data-flex-basis=&#34;415px&#34;&#xA;&#x9;&#xA;&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;under-the-hood-opensilver&#34;&gt;Under the hood: OpenSilver&#xA;&lt;/h2&gt;&lt;p&gt;The framework that makes this possible is OpenSilver, an open-source reimplementation of the WPF APIs built from scratch on modern .NET, WebAssembly, and the browser&amp;rsquo;s DOM. XAML.io itself is a C#/XAML application running on OpenSilver, so the IDE runs on the same framework it lets you develop with.&lt;/p&gt;&#xA;&lt;p&gt;OpenSilver renders XAML as real DOM elements rather than drawing to a canvas. A &lt;code&gt;TextBox&lt;/code&gt; becomes an actual &lt;code&gt;&amp;lt;textarea&amp;gt;&lt;/code&gt;, an &lt;code&gt;Image&lt;/code&gt; becomes an &lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt;, a &lt;code&gt;MediaElement&lt;/code&gt; becomes a &lt;code&gt;&amp;lt;video&amp;gt;&lt;/code&gt;, a &lt;code&gt;Path&lt;/code&gt; becomes an &lt;code&gt;&amp;lt;svg&amp;gt;&lt;/code&gt;. Because the output is real DOM, browser-native behaviors work without reimplementation: text selection, Ctrl+F, screen readers, tab navigation, form autofill, browser translation, and accessibility compliance. Open DevTools on a running XAML.io app and you see a real DOM tree, not a single &lt;code&gt;&amp;lt;canvas&amp;gt;&lt;/code&gt; element.&lt;/p&gt;&#xA;&lt;p&gt;The compiled output is a set of static files: &lt;code&gt;.wasm&lt;/code&gt;, &lt;code&gt;.js&lt;/code&gt;, &lt;code&gt;index.html&lt;/code&gt;, and assemblies. No ASP.NET server, no SignalR, no server-side rendering. Host them on any web server or CDN.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://blog.xaml.io/post/dotnet-ide-in-the-browser-no-backend/devtools-dom.png&#34;&#xA;&#x9;width=&#34;2799&#34;&#xA;&#x9;height=&#34;1512&#34;&#xA;&#x9;loading=&#34;lazy&#34;&#xA;&#x9;&#xA;&#x9;&#x9;alt=&#34;The DOM behind a running OpenSilver app. Every control is a real HTML element.&#34;&#xA;&#x9;&#xA;    &#xA;&#x9;&#xA;&#x9;&#x9;class=&#34;gallery-image&#34; &#xA;&#x9;&#x9;data-flex-grow=&#34;185&#34;&#xA;&#x9;&#x9;data-flex-basis=&#34;444px&#34;&#xA;&#x9;&#xA;&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;where-it-stands&#34;&gt;Where it stands&#xA;&lt;/h2&gt;&lt;p&gt;XAML.io is a tech preview. There is no debugger, no C# IntelliSense (XAML IntelliSense works), and solutions are limited to a single project. Every project can be downloaded as a standard .NET solution and opened in Visual Studio, VS Code, or any .NET IDE. The underlying framework is open-source, so nothing ties your code to XAML.io.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://blog.xaml.io/post/dotnet-ide-in-the-browser-no-backend/download-project.png&#34;&#xA;&#x9;width=&#34;845&#34;&#xA;&#x9;height=&#34;409&#34;&#xA;&#x9;loading=&#34;lazy&#34;&#xA;&#x9;&#xA;&#x9;&#x9;alt=&#34;Download the C#/XAML project and continue in Visual Studio. No lock-in.&#34;&#xA;&#x9;&#xA;    &#xA;&#x9;&#xA;&#x9;&#x9;class=&#34;gallery-image&#34; &#xA;&#x9;&#x9;data-flex-grow=&#34;206&#34;&#xA;&#x9;&#x9;data-flex-basis=&#34;495px&#34;&#xA;&#x9;&#xA;&gt;&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://xaml.io&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;&lt;strong&gt;xaml.io&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Free. No install. No signup required.&lt;/p&gt;&#xA;</description>
        </item></channel>
</rss>
