Skip to content

Commit ba68d51

Browse files
committed
Moved to own lib
1 parent cce8a47 commit ba68d51

39 files changed

Lines changed: 1316 additions & 106 deletions

Source/NETworkManager.Model/NETworkManager.Model.csproj renamed to Source/NETworkManager.Model/NETworkManager.Models.csproj

File renamed without changes.

Source/NETworkManager/WpfHelper/BindingProxy.cs renamed to Source/NETworkManager.Utilities.WPF/BindingProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Windows;
22

3-
namespace NETworkManager.WpfHelper
3+
namespace NETworkManager.Utilities.WPF
44
{
55
public class BindingProxy : Freezable
66
{
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{93733008-7269-460D-8390-AB281C75DB91}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>NETworkManager.Utilities.WPF</RootNamespace>
11+
<AssemblyName>NETworkManager.Utilities.WPF</AssemblyName>
12+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<DebugType>pdbonly</DebugType>
27+
<Optimize>true</Optimize>
28+
<OutputPath>bin\Release\</OutputPath>
29+
<DefineConstants>TRACE</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
</PropertyGroup>
33+
<ItemGroup>
34+
<Reference Include="ControlzEx, Version=3.0.2.4, Culture=neutral, processorArchitecture=MSIL">
35+
<HintPath>..\packages\ControlzEx.3.0.2.4\lib\net462\ControlzEx.dll</HintPath>
36+
</Reference>
37+
<Reference Include="MahApps.Metro, Version=1.6.5.1, Culture=neutral, processorArchitecture=MSIL">
38+
<HintPath>..\packages\MahApps.Metro.1.6.5\lib\net47\MahApps.Metro.dll</HintPath>
39+
</Reference>
40+
<Reference Include="PresentationCore" />
41+
<Reference Include="PresentationFramework" />
42+
<Reference Include="System" />
43+
<Reference Include="System.Core" />
44+
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
45+
<HintPath>..\packages\ControlzEx.3.0.2.4\lib\net462\System.Windows.Interactivity.dll</HintPath>
46+
</Reference>
47+
<Reference Include="System.Xml.Linq" />
48+
<Reference Include="System.Data.DataSetExtensions" />
49+
<Reference Include="Microsoft.CSharp" />
50+
<Reference Include="System.Data" />
51+
<Reference Include="System.Net.Http" />
52+
<Reference Include="System.Xml" />
53+
<Reference Include="WindowsBase" />
54+
</ItemGroup>
55+
<ItemGroup>
56+
<Compile Include="BindingProxy.cs" />
57+
<Compile Include="PasswordBoxBindingBehavior.cs" />
58+
<Compile Include="Properties\AssemblyInfo.cs" />
59+
<Compile Include="ProtocolSettingsLayout.cs" />
60+
</ItemGroup>
61+
<ItemGroup>
62+
<None Include="packages.config" />
63+
</ItemGroup>
64+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
65+
</Project>

Source/NETworkManager/WpfHelper/PasswordBoxBindingBehavior.cs renamed to Source/NETworkManager.Utilities.WPF/PasswordBoxBindingBehavior.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Windows.Data;
55
using System.Windows.Interactivity;
66

7-
namespace NETworkManager.WpfHelper
7+
namespace NETworkManager.Utilities.WPF
88
{
99
public class PasswordBoxBindingBehavior : Behavior<PasswordBox>
1010
{
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("NETworkManager.Utilities.WPF")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("NETworkManager.Utilities.WPF")]
13+
[assembly: AssemblyCopyright("Copyright © 2020")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("93733008-7269-460d-8390-ab281c75db91")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

Source/NETworkManager/WpfHelper/ProtocolSettingsLayout.cs renamed to Source/NETworkManager.Utilities.WPF/ProtocolSettingsLayout.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Windows.Controls;
55
using System.Windows.Data;
66

7-
namespace NETworkManager.WpfHelper
7+
namespace NETworkManager.Utilities.WPF
88
{
99
public class ProtocolSettingsLayout
1010
{
@@ -20,7 +20,7 @@ public static void SetMVVMHasError(DependencyObject dependencyObject, bool value
2020
dependencyObject.SetValue(MVVMHasErrorProperty, value);
2121
}
2222

23-
private static object CoerceMVVMHasError(DependencyObject dependencyObject, Object baseValue)
23+
private static object CoerceMVVMHasError(DependencyObject dependencyObject, object baseValue)
2424
{
2525
bool hasError = (bool)baseValue;
2626

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="ControlzEx" version="3.0.2.4" targetFramework="net472" />
4+
<package id="MahApps.Metro" version="1.6.5" targetFramework="net472" />
5+
</packages>

Source/NETworkManager.sln

Lines changed: 22 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.Profiles", "
1515
EndProject
1616
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.Converters", "NETworkManager.Converters\NETworkManager.Converters.csproj", "{BD4DDC21-7B64-41B2-BAC7-8173E0FE84BE}"
1717
EndProject
18-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.Resources", "NETworkManager.Resources\NETworkManager.Resources.csproj", "{E610546C-F732-447F-A2C8-0013BFBB8742}"
19-
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.Model", "NETworkManager.Model\NETworkManager.Model.csproj", "{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}"
21-
EndProject
22-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.ViewModel", "NETworkManager.ViewModel\NETworkManager.ViewModel.csproj", "{D9527072-6834-4DA8-8B3A-75DCD42A716E}"
23-
EndProject
2418
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.Update", "NETworkManager.Update\NETworkManager.Update.csproj", "{4306A872-15EB-4109-AAAC-5EC0F8F372C5}"
2519
EndProject
20+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETworkManager.Utilities.WPF", "NETworkManager.Utilities.WPF\NETworkManager.Utilities.WPF.csproj", "{93733008-7269-460D-8390-AB281C75DB91}"
21+
EndProject
2622
Global
2723
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2824
Debug|Any CPU = Debug|Any CPU
@@ -158,66 +154,6 @@ Global
158154
{BD4DDC21-7B64-41B2-BAC7-8173E0FE84BE}.Release|x64.Build.0 = Release|Any CPU
159155
{BD4DDC21-7B64-41B2-BAC7-8173E0FE84BE}.Release|x86.ActiveCfg = Release|Any CPU
160156
{BD4DDC21-7B64-41B2-BAC7-8173E0FE84BE}.Release|x86.Build.0 = Release|Any CPU
161-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
162-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|Any CPU.Build.0 = Debug|Any CPU
163-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|ARM.ActiveCfg = Debug|Any CPU
164-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|ARM.Build.0 = Debug|Any CPU
165-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|ARM64.ActiveCfg = Debug|Any CPU
166-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|ARM64.Build.0 = Debug|Any CPU
167-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|x64.ActiveCfg = Debug|Any CPU
168-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|x64.Build.0 = Debug|Any CPU
169-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|x86.ActiveCfg = Debug|Any CPU
170-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Debug|x86.Build.0 = Debug|Any CPU
171-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|Any CPU.ActiveCfg = Release|Any CPU
172-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|Any CPU.Build.0 = Release|Any CPU
173-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|ARM.ActiveCfg = Release|Any CPU
174-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|ARM.Build.0 = Release|Any CPU
175-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|ARM64.ActiveCfg = Release|Any CPU
176-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|ARM64.Build.0 = Release|Any CPU
177-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|x64.ActiveCfg = Release|Any CPU
178-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|x64.Build.0 = Release|Any CPU
179-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|x86.ActiveCfg = Release|Any CPU
180-
{E610546C-F732-447F-A2C8-0013BFBB8742}.Release|x86.Build.0 = Release|Any CPU
181-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
182-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
183-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|ARM.ActiveCfg = Debug|Any CPU
184-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|ARM.Build.0 = Debug|Any CPU
185-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|ARM64.ActiveCfg = Debug|Any CPU
186-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|ARM64.Build.0 = Debug|Any CPU
187-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|x64.ActiveCfg = Debug|Any CPU
188-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|x64.Build.0 = Debug|Any CPU
189-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|x86.ActiveCfg = Debug|Any CPU
190-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Debug|x86.Build.0 = Debug|Any CPU
191-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
192-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|Any CPU.Build.0 = Release|Any CPU
193-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|ARM.ActiveCfg = Release|Any CPU
194-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|ARM.Build.0 = Release|Any CPU
195-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|ARM64.ActiveCfg = Release|Any CPU
196-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|ARM64.Build.0 = Release|Any CPU
197-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|x64.ActiveCfg = Release|Any CPU
198-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|x64.Build.0 = Release|Any CPU
199-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|x86.ActiveCfg = Release|Any CPU
200-
{97F712D1-6A21-4C6C-97F0-3F14D6E9ADFC}.Release|x86.Build.0 = Release|Any CPU
201-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
202-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|Any CPU.Build.0 = Debug|Any CPU
203-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|ARM.ActiveCfg = Debug|Any CPU
204-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|ARM.Build.0 = Debug|Any CPU
205-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|ARM64.ActiveCfg = Debug|Any CPU
206-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|ARM64.Build.0 = Debug|Any CPU
207-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|x64.ActiveCfg = Debug|Any CPU
208-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|x64.Build.0 = Debug|Any CPU
209-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|x86.ActiveCfg = Debug|Any CPU
210-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Debug|x86.Build.0 = Debug|Any CPU
211-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|Any CPU.ActiveCfg = Release|Any CPU
212-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|Any CPU.Build.0 = Release|Any CPU
213-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|ARM.ActiveCfg = Release|Any CPU
214-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|ARM.Build.0 = Release|Any CPU
215-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|ARM64.ActiveCfg = Release|Any CPU
216-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|ARM64.Build.0 = Release|Any CPU
217-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|x64.ActiveCfg = Release|Any CPU
218-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|x64.Build.0 = Release|Any CPU
219-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|x86.ActiveCfg = Release|Any CPU
220-
{D9527072-6834-4DA8-8B3A-75DCD42A716E}.Release|x86.Build.0 = Release|Any CPU
221157
{4306A872-15EB-4109-AAAC-5EC0F8F372C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
222158
{4306A872-15EB-4109-AAAC-5EC0F8F372C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
223159
{4306A872-15EB-4109-AAAC-5EC0F8F372C5}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -238,6 +174,26 @@ Global
238174
{4306A872-15EB-4109-AAAC-5EC0F8F372C5}.Release|x64.Build.0 = Release|Any CPU
239175
{4306A872-15EB-4109-AAAC-5EC0F8F372C5}.Release|x86.ActiveCfg = Release|Any CPU
240176
{4306A872-15EB-4109-AAAC-5EC0F8F372C5}.Release|x86.Build.0 = Release|Any CPU
177+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
178+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|Any CPU.Build.0 = Debug|Any CPU
179+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|ARM.ActiveCfg = Debug|Any CPU
180+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|ARM.Build.0 = Debug|Any CPU
181+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|ARM64.ActiveCfg = Debug|Any CPU
182+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|ARM64.Build.0 = Debug|Any CPU
183+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|x64.ActiveCfg = Debug|Any CPU
184+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|x64.Build.0 = Debug|Any CPU
185+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|x86.ActiveCfg = Debug|Any CPU
186+
{93733008-7269-460D-8390-AB281C75DB91}.Debug|x86.Build.0 = Debug|Any CPU
187+
{93733008-7269-460D-8390-AB281C75DB91}.Release|Any CPU.ActiveCfg = Release|Any CPU
188+
{93733008-7269-460D-8390-AB281C75DB91}.Release|Any CPU.Build.0 = Release|Any CPU
189+
{93733008-7269-460D-8390-AB281C75DB91}.Release|ARM.ActiveCfg = Release|Any CPU
190+
{93733008-7269-460D-8390-AB281C75DB91}.Release|ARM.Build.0 = Release|Any CPU
191+
{93733008-7269-460D-8390-AB281C75DB91}.Release|ARM64.ActiveCfg = Release|Any CPU
192+
{93733008-7269-460D-8390-AB281C75DB91}.Release|ARM64.Build.0 = Release|Any CPU
193+
{93733008-7269-460D-8390-AB281C75DB91}.Release|x64.ActiveCfg = Release|Any CPU
194+
{93733008-7269-460D-8390-AB281C75DB91}.Release|x64.Build.0 = Release|Any CPU
195+
{93733008-7269-460D-8390-AB281C75DB91}.Release|x86.ActiveCfg = Release|Any CPU
196+
{93733008-7269-460D-8390-AB281C75DB91}.Release|x86.Build.0 = Release|Any CPU
241197
EndGlobalSection
242198
GlobalSection(SolutionProperties) = preSolution
243199
HideSolutionNode = FALSE

Source/NETworkManager/Controls/DragablzTabHostWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xmlns:networkManagerControls="clr-namespace:NETworkManager.Controls"
1111
xmlns:networkManager="clr-namespace:NETworkManager"
1212
xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
13-
xmlns:wpfHelper="clr-namespace:NETworkManager.WpfHelper"
13+
xmlns:wpfHelpers="clr-namespace:NETworkManager.Utilities.WPF;assembly=NETworkManager.Utilities.WPF"
1414
mc:Ignorable="d"
1515
Title="NETworkManager" Style="{DynamicResource DefaultWindow}" MinWidth="650" MinHeight="500" Height="650" Width="1000" TitleAlignment="Left"
1616
d:DataContext="{d:DesignInstance networkManagerControls:DragablzTabHostWindow}">
@@ -20,7 +20,7 @@
2020
<Grid>
2121
<dragablz:TabablzControl Focusable="False" Name="TabsContainer" ClosingItemCallback="{Binding CloseItemCommand}">
2222
<dragablz:TabablzControl.Resources>
23-
<wpfHelper:BindingProxy x:Key="BindingProxy" Data="{Binding}" />
23+
<wpfHelpers:BindingProxy x:Key="BindingProxy" Data="{Binding}" />
2424
</dragablz:TabablzControl.Resources>
2525
<dragablz:TabablzControl.InterTabController>
2626
<dragablz:InterTabController InterTabClient="{Binding InterTabClient}" x:Name="InterTabController" />
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 chris84948
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)