mirror of https://github.com/AMT-Cheif/Stylet.git
Move View into the Xaml namespace, so it's accessible through https://github.com/canton7/Stylet
This commit is contained in:
parent
0b75df35ef
commit
b89c61a91e
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using Stylet.Xaml;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
<Compile Include="StyletIoC\StyletIoCBuilder.cs" />
|
||||
<Compile Include="StyletIoC\StyletIoCContainer.cs" />
|
||||
<Compile Include="StyletIoC\UnboundGeneric.cs" />
|
||||
<Compile Include="View.cs" />
|
||||
<Compile Include="Xaml\View.cs" />
|
||||
<Compile Include="ViewManager.cs" />
|
||||
<Compile Include="WindowManager.cs" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using Stylet.Xaml;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:s="clr-namespace:Stylet">
|
||||
xmlns:s="clr-namespace:Stylet.Xaml">
|
||||
<Style x:Key="StyletConductorTabControl" TargetType="TabControl">
|
||||
<Setter Property="ItemsSource" Value="{Binding Items}"/>
|
||||
<Setter Property="SelectedItem" Value="{Binding ActiveItem}"/>
|
||||
|
|
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||
using System.Windows;
|
||||
using System.Windows.Markup;
|
||||
|
||||
namespace Stylet
|
||||
namespace Stylet.Xaml
|
||||
{
|
||||
public class View : DependencyObject
|
||||
{
|
|
@ -1,6 +1,7 @@
|
|||
using Moq;
|
||||
using NUnit.Framework;
|
||||
using Stylet;
|
||||
using Stylet.Xaml;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
using Moq;
|
||||
using NUnit.Framework;
|
||||
using Stylet;
|
||||
using Stylet.Xaml;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
|
Loading…
Reference in New Issue