Skip to content

Commit 5c5bcb3

Browse files
committed
V5.0.0 Released
1 parent f748439 commit 5c5bcb3

24 files changed

+254
-122
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
XCEED SOFTWARE, INC.
2+
3+
COMMUNITY LICENSE AGREEMENT (for non-commercial use)
4+
5+
This Community License Agreement (the "Agreement") is a legal agreement between you ("Licensee") and Xceed Software, Inc. ("Xceed"). Licensee wishes to use the "Xceed Extended WPF Toolkit" (the "Software"), an Xceed product, for "Non-Commercial Use". Such use of the Software means that it is not primarily intended for commercial advantages or for monetary compensation or any other type of compensation, including donations. Xceed agrees to license its products to developers like you as along as all terms & conditions set forth herein are respected. The Software is provided under a license; it is not "sold" in any manner. By installing, copying or otherwise using the Software, you confirm your agreement to the terms and conditions expressed in this Agreement. If you do not agree, you are not authorized to use our Software.
6+
7+
GENERAL
8+
9+
Subject to compliance with the conditions set out below, Xceed grants to Licensee a non-exclusive and perpetual right (unless/until revoked by Xceed at its discretion) to install and use the Software for designing, building, testing and/or deploying/distributing (to less than 10 users or end-users) an application, system or program for Non-Commercial Use only. Would Licensee need to use the Software for any purpose that is not strictly Non-Commercial Use, or if the Software is to be deployed or distributed to more than 10 users/end-users - even in a Non-Commercial Use, Licensee must acquire a Commercial License (with a paid subscription).
10+
11+
The license granted under this Agreement is conditional on Licensee complying at all times with the following conditions:
12+
13+
-All of the Agreement's terms & conditions are strictly complied with by the Licensee;
14+
15+
-The Software is used for Non-Commercial Use only;
16+
17+
-The Software cannot be resold, licensed, sublicensed or distributed by Licensee in any manner other than as specified above;
18+
19+
-Xceed's name and logo must appear clearly in the resulting work with an Xceed Copyright notice; the name and notice must be visible, not be hidden;
20+
21+
-Licensee is not authorized to "deploy" the Software for/in any commercial environment;
22+
23+
-Licensee commits not to create a competitive software product based on the Software;
24+
25+
-Licensee is not authorized to sell or license/sub-license/lease the resulting work to anyone nor charge any amounts of money or accept donations or exchange services for the said resulting work.
26+
27+
SUPPORT
28+
29+
Support is not included in Community Licenses. The Software is provided on an "as is" basis only. Licensee can send requests to Xceed's technical support team only if a commercial license has been obtained. Bugs may be corrected at Xceed's discretion.
30+
31+
WARRANTY
32+
33+
Xceed clearly states that this Community License includes no warranty of any type. Xceed products are provided on an "as is" basis. In no case shall Xceed be responsible or liable for any direct or indirect, or consequential damages whatsoever (including, without limitation, any damages for loss of revenues, of business profits, business interruption, or loss of business information, or any other type of loss or damages) arising out of the use of the Software even if Xceed may have been advised of such potential damages or loss.
34+
35+
OTHER
36+
37+
Xceed does not allow Community Licensees to publish results from benchmarks or performance comparison tests (with other products) without advance permission by Xceed. Licensee is not authorized to use Xceed's name, tradenames and trademarks without Xceed's written permission (other than the Copyright notice stated above in the "General" section).
38+
39+
GOVERNING LAW
40+
41+
This Agreement shall be governed by the laws of the Province of Quebec (Canada). Any claim, dispute or problem arising out of this Agreement shall be deemed non-receivable or may be settled or disposed of at Xceed's discretion. Xceed reserves the right to settle any action before an arbitration board in Quebec as per generally accepted, international rules of arbitration prevailing in Quebec.
42+
43+
Xceed reserves the right to modify this Agreement at all times without notice.
44+
45+
(C) Copyright: Xceed Software, Inc. - 2021. All rights reserved.

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Aero/Xceed.Wpf.AvalonDock.Themes.Aero.NET5.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
2727
<Link>AssemblyVersionInfo.cs</Link>
2828
</Compile>
29-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
30-
<Link>AssemblyVersionInfoCommon.cs</Link>
31-
</Compile>
3229
<Compile Include="AeroColors.cs" />
3330
<Compile Include="Controls\SplineBorder.cs" />
3431
<Compile Include="Properties\AssemblyInfo.cs">

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Aero/Xceed.Wpf.AvalonDock.Themes.Aero.csproj

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@
5252
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
5353
<Link>AssemblyVersionInfo.cs</Link>
5454
</Compile>
55-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
56-
<Link>AssemblyVersionInfoCommon.cs</Link>
57-
</Compile>
5855
<Compile Include="AeroColors.cs" />
5956
<Compile Include="Controls\SplineBorder.cs" />
6057
<Compile Include="Properties\AssemblyInfo.cs">
@@ -188,11 +185,11 @@
188185
<Resource Include="Images\PinDocMenu_Dark.png" />
189186
</ItemGroup>
190187
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
191-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
192-
Other similar extension points exist, see Microsoft.Common.targets.
193-
<Target Name="BeforeBuild">
194-
</Target>
195-
<Target Name="AfterBuild">
196-
</Target>
188+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
189+
Other similar extension points exist, see Microsoft.Common.targets.
190+
<Target Name="BeforeBuild">
191+
</Target>
192+
<Target Name="AfterBuild">
193+
</Target>
197194
-->
198195
</Project>

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Metro/Xceed.Wpf.AvalonDock.Themes.Metro.NET5.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
2727
<Link>AssemblyVersionInfo.cs</Link>
2828
</Compile>
29-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
30-
<Link>AssemblyVersionInfoCommon.cs</Link>
31-
</Compile>
3229
<Compile Include="Properties\AssemblyInfo.cs">
3330
<SubType>Code</SubType>
3431
</Compile>

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Metro/Xceed.Wpf.AvalonDock.Themes.Metro.csproj

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@
5252
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
5353
<Link>AssemblyVersionInfo.cs</Link>
5454
</Compile>
55-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
56-
<Link>AssemblyVersionInfoCommon.cs</Link>
57-
</Compile>
5855
<Compile Include="Properties\AssemblyInfo.cs">
5956
<SubType>Code</SubType>
6057
</Compile>
@@ -115,11 +112,11 @@
115112
</ProjectReference>
116113
</ItemGroup>
117114
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
118-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
119-
Other similar extension points exist, see Microsoft.Common.targets.
120-
<Target Name="BeforeBuild">
121-
</Target>
122-
<Target Name="AfterBuild">
123-
</Target>
115+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
116+
Other similar extension points exist, see Microsoft.Common.targets.
117+
<Target Name="BeforeBuild">
118+
</Target>
119+
<Target Name="AfterBuild">
120+
</Target>
124121
-->
125122
</Project>

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.VS2010/Xceed.Wpf.AvalonDock.Themes.VS2010.NET5.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@
3434
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
3535
<Link>AssemblyVersionInfo.cs</Link>
3636
</Compile>
37-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
38-
<Link>AssemblyVersionInfoCommon.cs</Link>
39-
</Compile>
4037
<Compile Include="Properties\AssemblyInfo.cs">
4138
<SubType>Code</SubType>
4239
</Compile>

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.VS2010/Xceed.Wpf.AvalonDock.Themes.VS2010.csproj

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@
6464
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
6565
<Link>AssemblyVersionInfo.cs</Link>
6666
</Compile>
67-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
68-
<Link>AssemblyVersionInfoCommon.cs</Link>
69-
</Compile>
7067
<Compile Include="Properties\AssemblyInfo.cs">
7168
<SubType>Code</SubType>
7269
</Compile>
@@ -135,11 +132,11 @@
135132
<Resource Include="Images\PinRestore_Black.png" />
136133
</ItemGroup>
137134
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
138-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
139-
Other similar extension points exist, see Microsoft.Common.targets.
140-
<Target Name="BeforeBuild">
141-
</Target>
142-
<Target Name="AfterBuild">
143-
</Target>
135+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
136+
Other similar extension points exist, see Microsoft.Common.targets.
137+
<Target Name="BeforeBuild">
138+
</Target>
139+
<Target Name="AfterBuild">
140+
</Target>
144141
-->
145142
</Project>

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock/DockingManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2855,6 +2855,7 @@ private LayoutFloatingWindowControl CreateFloatingWindowForLayoutAnchorableWitho
28552855
Top = fwTop,
28562856
Left = fwLeft
28572857
};
2858+
fwc.Resources = this.Resources;
28582859

28592860
this.ShowInTaskbar( fwc );
28602861

@@ -2980,6 +2981,7 @@ private LayoutFloatingWindowControl CreateFloatingWindowCore( LayoutContent cont
29802981
Left = contentModel.FloatingLeft,
29812982
Top = contentModel.FloatingTop
29822983
};
2984+
fwc.Resources = this.Resources;
29832985
}
29842986
else
29852987
{
@@ -3002,7 +3004,7 @@ private LayoutFloatingWindowControl CreateFloatingWindowCore( LayoutContent cont
30023004
Left = contentModel.FloatingLeft,
30033005
Top = contentModel.FloatingTop
30043006
};
3005-
3007+
fwc.Resources = this.Resources;
30063008
}
30073009

30083010
this.ShowInTaskbar( fwc );

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock/Xceed.Wpf.AvalonDock.NET5.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
2727
<Link>AssemblyVersionInfo.cs</Link>
2828
</Compile>
29-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
30-
<Link>AssemblyVersionInfoCommon.cs</Link>
31-
</Compile>
3229
<Compile Include="Commands\RelayCommand.cs" />
3330
<Compile Include="Controls\AnchorablePaneControlOverlayArea.cs" />
3431
<Compile Include="Controls\AnchorablePaneDropTarget.cs" />

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock/Xceed.Wpf.AvalonDock.csproj

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@
6161
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfo.cs">
6262
<Link>AssemblyVersionInfo.cs</Link>
6363
</Compile>
64-
<Compile Include="..\Xceed.Wpf.Toolkit\AssemblyVersionInfoCommon.cs">
65-
<Link>AssemblyVersionInfoCommon.cs</Link>
66-
</Compile>
6764
<Compile Include="Commands\RelayCommand.cs" />
6865
<Compile Include="Controls\AnchorablePaneControlOverlayArea.cs" />
6966
<Compile Include="Controls\AnchorablePaneDropTarget.cs" />
@@ -421,11 +418,11 @@
421418
<Resource Include="Themes\Generic\Images\PinRestore_White.png" />
422419
</ItemGroup>
423420
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
424-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
425-
Other similar extension points exist, see Microsoft.Common.targets.
426-
<Target Name="BeforeBuild">
427-
</Target>
428-
<Target Name="AfterBuild">
429-
</Target>
421+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
422+
Other similar extension points exist, see Microsoft.Common.targets.
423+
<Target Name="BeforeBuild">
424+
</Target>
425+
<Target Name="AfterBuild">
426+
</Target>
430427
-->
431428
</Project>

0 commit comments

Comments
 (0)