move namespace Diagrams to BrightSharp.Diagrams

This commit is contained in:
2017-08-31 12:55:09 +03:00
parent b3f14b4637
commit 4e40c7281a
22 changed files with 193 additions and 162 deletions

View File

@@ -60,12 +60,19 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="ControlContainer.xaml.cs">
<DependentUpon>ControlContainer.xaml</DependentUpon>
</Compile>
<Compile Include="TestPage2.xaml.cs">
<DependentUpon>TestPage2.xaml</DependentUpon>
</Compile>
<Compile Include="TestPage.xaml.cs">
<DependentUpon>TestPage.xaml</DependentUpon>
</Compile>
<Page Include="ControlContainer.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="CustomWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>

View File

@@ -0,0 +1,12 @@
<Window x:Class="BrightSharp.Ui.Tests.ControlContainer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:BrightSharp.Ui.Tests"
mc:Ignorable="d"
Title="ControlContainer" Height="300" Width="300">
<Grid>
</Grid>
</Window>

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace BrightSharp.Ui.Tests
{
/// <summary>
/// Interaction logic for ControlContainer.xaml
/// </summary>
public partial class ControlContainer : Window
{
public ControlContainer() {
InitializeComponent();
}
}
}

View File

@@ -1,5 +1,4 @@
using BrightSharp.Converters;
using Diagrams;
using BrightSharp.Diagrams;
using System;
using System.Text.RegularExpressions;
using System.Windows;