Fix namespaces in Stylet.Templates. Again.

This commit is contained in:
Antony Male 2020-10-21 20:53:43 +01:00
parent 5db234f950
commit 021e3ee51c
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<Application x:Class="Company.WpfApplication1.App" <Application x:Class="Company.StyletApplication1.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="https://github.com/canton7/Stylet" xmlns:s="https://github.com/canton7/Stylet"

View File

@ -6,7 +6,7 @@ using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
namespace Company.WpfApplication1 namespace Company.StyletApplication1
{ {
/// <summary> /// <summary>
/// Interaction logic for App.xaml /// Interaction logic for App.xaml

View File

@ -2,7 +2,7 @@
using Stylet; using Stylet;
using StyletIoC; using StyletIoC;
namespace Company.WpfApplication1 namespace Company.StyletApplication1
{ {
public class Bootstrapper : Bootstrapper<ShellViewModel> public class Bootstrapper : Bootstrapper<ShellViewModel>
{ {

View File

@ -1,4 +1,4 @@
<Window x:Class="Company.WpfApplication1.Pages.ShellView" <Window x:Class="Company.StyletApplication1.Pages.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

View File

@ -1,6 +1,6 @@
using System.Windows; using System.Windows;
namespace Company.WpfApplication1.Pages namespace Company.StyletApplication1.Pages
{ {
/// <summary> /// <summary>
/// Interaction logic for ShellView.xaml /// Interaction logic for ShellView.xaml

View File

@ -1,6 +1,6 @@
using Stylet; using Stylet;
namespace Company.WpfApplication1.Pages namespace Company.StyletApplication1.Pages
{ {
public class ShellViewModel : Screen public class ShellViewModel : Screen
{ {