mirror of
https://github.com/VitalickS/BrightSharp.Toolkit.git
synced 2026-03-21 02:21:15 +00:00
move namespace Diagrams to BrightSharp.Diagrams
This commit is contained in:
@@ -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>
|
||||
|
||||
12
BrightSharp.Ui.Tests/ControlContainer.xaml
Normal file
12
BrightSharp.Ui.Tests/ControlContainer.xaml
Normal 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>
|
||||
26
BrightSharp.Ui.Tests/ControlContainer.xaml.cs
Normal file
26
BrightSharp.Ui.Tests/ControlContainer.xaml.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,4 @@
|
||||
using BrightSharp.Converters;
|
||||
using Diagrams;
|
||||
using BrightSharp.Diagrams;
|
||||
using System;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows;
|
||||
|
||||
Reference in New Issue
Block a user