Skip to content

Commit 3246efa

Browse files
worldbeaterglennawatson
authored andcommitted
Housekeeping: Correct ReactiveWindow usage example (#1899)
1 parent 9e20f25 commit 3246efa

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/ReactiveUI.Wpf/ReactiveWindow.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@ namespace ReactiveUI
2020
/// <code>
2121
/// <![CDATA[
2222
/// <rxui:ReactiveWindow
23-
/// x:Class="views:YourView"
23+
/// x:Class="Foo.Bar.Views.YourView"
2424
/// x:TypeArguments="vms:YourViewModel"
2525
/// xmlns:rxui="http://reactiveui.net"
26-
/// xmlns:views="clr-namespace:Foo.Bar.Views"
27-
/// xmlns:vms="clr-namespace:Foo.Bar.ViewModels">
26+
/// xmlns:vms="clr-namespace:Foo.Bar.ViewModels"
27+
/// xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
28+
/// xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
29+
/// xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
30+
/// xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
31+
/// mc:Ignorable="d">
2832
/// <!-- view XAML here -->
2933
/// </rxui:ReactiveWindow>
3034
/// ]]>

0 commit comments

Comments
 (0)