-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5595b92
commit c5793c8
Showing
56 changed files
with
3,150 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
Samples/Automatic Layout/Custom DataSource/CustomDataSource/App.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" /> | ||
</startup> | ||
</configuration> |
9 changes: 9 additions & 0 deletions
9
Samples/Automatic Layout/Custom DataSource/CustomDataSource/App.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Application x:Class="CustomDataSource.App" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:local="clr-namespace:CustomDataSource" | ||
StartupUri="MainWindow.xaml"> | ||
<Application.Resources> | ||
|
||
</Application.Resources> | ||
</Application> |
17 changes: 17 additions & 0 deletions
17
Samples/Automatic Layout/Custom DataSource/CustomDataSource/App.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Configuration; | ||
using System.Data; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
|
||
namespace CustomDataSource | ||
{ | ||
/// <summary> | ||
/// Interaction logic for App.xaml | ||
/// </summary> | ||
public partial class App : Application | ||
{ | ||
} | ||
} |
109 changes: 109 additions & 0 deletions
109
Samples/Automatic Layout/Custom DataSource/CustomDataSource/CustomDataSource_462.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{2115284A-6B1C-4173-A879-60D9C9BE7981}</ProjectGuid> | ||
<OutputType>WinExe</OutputType> | ||
<RootNamespace>CustomDataSource</RootNamespace> | ||
<AssemblyName>CustomDataSource</AssemblyName> | ||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<WarningLevel>4</WarningLevel> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xaml"> | ||
<RequiredTargetFramework>4.0</RequiredTargetFramework> | ||
</Reference> | ||
<Reference Include="WindowsBase" /> | ||
<Reference Include="PresentationCore" /> | ||
<Reference Include="PresentationFramework" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ApplicationDefinition Include="App.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</ApplicationDefinition> | ||
<Page Include="MainWindow.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Compile Include="App.xaml.cs"> | ||
<DependentUpon>App.xaml</DependentUpon> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Include="MainWindow.xaml.cs"> | ||
<DependentUpon>MainWindow.xaml</DependentUpon> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Page Include="NodeCreate.xaml"> | ||
<SubType>Designer</SubType> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Model\ItemInfo.cs" /> | ||
<Compile Include="NodeCreate.xaml.cs"> | ||
<DependentUpon>NodeCreate.xaml</DependentUpon> | ||
</Compile> | ||
<Compile Include="Properties\AssemblyInfo.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Include="Properties\Resources.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTime>True</DesignTime> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
<Compile Include="Properties\Settings.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Settings.settings</DependentUpon> | ||
<DesignTimeSharedInput>True</DesignTimeSharedInput> | ||
</Compile> | ||
<EmbeddedResource Include="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
<None Include="Properties\Settings.settings"> | ||
<Generator>SettingsSingleFileGenerator</Generator> | ||
<LastGenOutput>Settings.Designer.cs</LastGenOutput> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="App.config" /> | ||
<PackageReference Include="Syncfusion.Licensing" Version="*" /> | ||
<PackageReference Include="Syncfusion.SfDiagram.WPF" Version="*" /> | ||
<PackageReference Include="Syncfusion.Shared.WPF" Version="*" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
25 changes: 25 additions & 0 deletions
25
Samples/Automatic Layout/Custom DataSource/CustomDataSource/CustomDataSource_462.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.8.34309.116 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomDataSource_462", "CustomDataSource_462.csproj", "{2115284A-6B1C-4173-A879-60D9C9BE7981}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {954FCF8B-1BCA-464B-8668-AFA06414EF5F} | ||
EndGlobalSection | ||
EndGlobal |
109 changes: 109 additions & 0 deletions
109
Samples/Automatic Layout/Custom DataSource/CustomDataSource/CustomDataSource_60.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net6.0-windows</TargetFramework> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<UseWPF>true</UseWPF> | ||
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems> | ||
<EnableDefaultItems>false</EnableDefaultItems> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<AssemblyName>CustomDataSource</AssemblyName> | ||
<RootNamespace>CustomDataSource</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DefineConstants>TRACE;NET50</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<DefineConstants>TRACE;NET50</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-Xml|AnyCPU'"> | ||
<DefineConstants>TRACE;NET50</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Remove="obj\**" /> | ||
<Compile Remove="obj_45\**" /> | ||
<Compile Remove="obj_462\**" /> | ||
<Compile Remove="obj_50\**" /> | ||
<Compile Remove="obj_60\**" /> | ||
<Compile Remove="obj_70\**" /> | ||
<Compile Remove="obj_80\**" /> | ||
<Compile Remove="obj_90\**" /> | ||
<EmbeddedResource Remove="obj\**" /> | ||
<EmbeddedResource Remove="obj_45\**" /> | ||
<EmbeddedResource Remove="obj_462\**" /> | ||
<EmbeddedResource Remove="obj_50\**" /> | ||
<EmbeddedResource Remove="obj_60\**" /> | ||
<EmbeddedResource Remove="obj_70\**" /> | ||
<EmbeddedResource Remove="obj_80\**" /> | ||
<EmbeddedResource Remove="obj_90\**" /> | ||
<None Remove="obj\**" /> | ||
<None Remove="obj_45\**" /> | ||
<None Remove="obj_462\**" /> | ||
<None Remove="obj_50\**" /> | ||
<None Remove="obj_60\**" /> | ||
<None Remove="obj_70\**" /> | ||
<None Remove="obj_80\**" /> | ||
<None Remove="obj_90\**" /> | ||
<Page Remove="obj\**" /> | ||
<Page Remove="obj_45\**" /> | ||
<Page Remove="obj_462\**" /> | ||
<Page Remove="obj_50\**" /> | ||
<Page Remove="obj_60\**" /> | ||
<None Remove="obj_70\**" /> | ||
<None Remove="obj_80\**" /> | ||
<None Remove="obj_90\**" /> | ||
<None Remove="Properties\Settings.settings" /> | ||
<None Include="Properties\Settings.settings" /> | ||
<None Remove="App.config" /> | ||
<None Include="App.config" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\.vs\ProjectGeneratorApp\FileContentIndex\895d9006-fb4e-486f-84bf-2595fbffa67c.vsidx" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\.vs\ProjectGeneratorApp\v17\.suo" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\DocCoreProjTemplate.xml" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\ExcludeProject.xml" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\ProjectGeneratorApp.exe" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\ProjectGeneratorApp.exe.config" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\ProjectGeneratorApp.pdb" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\ProjectorGeneratorLibrary.dll" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\bin\Debug\ProjectorGeneratorLibrary.pdb" /> | ||
<Compile Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\.NETFramework,Version=v4.7.AssemblyAttributes.cs" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\ProjectGeneratorApp.csproj.AssemblyReference.cache" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\ProjectGeneratorApp.csproj.CopyComplete" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\ProjectGeneratorApp.csproj.CoreCompileInputs.cache" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\ProjectGeneratorApp.csproj.FileListAbsolute.txt" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\ProjectGeneratorApp.exe" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\obj\Debug\ProjectGeneratorApp.pdb" /> | ||
<Compile Remove="projectgenerator\ProjectGeneratorApp\Properties\AssemblyInfo.cs" /> | ||
<None Remove="projectgenerator\ProjectGeneratorApp\App.config" /> | ||
<Compile Remove="projectgenerator\ProjectGeneratorApp\Program.cs" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\bin\Debug\DocCoreProjTemplate.xml" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\bin\Debug\ExcludeProject.xml" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\bin\Debug\ProjectorGeneratorLibrary.dll" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\bin\Debug\ProjectorGeneratorLibrary.pdb" /> | ||
<Compile Remove="projectgenerator\ProjectorGeneratorLibrary\obj\Debug\.NETFramework,Version=v4.7.AssemblyAttributes.cs" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\obj\Debug\ProjectorGeneratorLibrary.csproj.AssemblyReference.cache" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\obj\Debug\ProjectorGeneratorLibrary.csproj.CoreCompileInputs.cache" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\obj\Debug\ProjectorGeneratorLibrary.csproj.FileListAbsolute.txt" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\obj\Debug\ProjectorGeneratorLibrary.dll" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\obj\Debug\ProjectorGeneratorLibrary.pdb" /> | ||
<Compile Remove="projectgenerator\ProjectorGeneratorLibrary\Properties\AssemblyInfo.cs" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\DocCoreProjTemplate.xml" /> | ||
<None Remove="projectgenerator\ProjectorGeneratorLibrary\ExcludeProject.xml" /> | ||
<Compile Remove="projectgenerator\ProjectorGeneratorLibrary\ProjectGenerator.cs" /> | ||
<ApplicationDefinition Include="App.xaml" /> | ||
<Compile Include="App.xaml.cs" /> | ||
<Compile Include="MainWindow.xaml.cs" /> | ||
<Compile Include="Model\ItemInfo.cs" /> | ||
<Compile Include="NodeCreate.xaml.cs" /> | ||
<PackageReference Include="Syncfusion.Licensing" Version="*" /> | ||
<PackageReference Include="Syncfusion.SfDiagram.WPF" Version="*" /> | ||
<PackageReference Include="Syncfusion.Shared.WPF" Version="*" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Page Include="MainWindow.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
<Page Include="NodeCreate.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
</ItemGroup> | ||
</Project> |
12 changes: 12 additions & 0 deletions
12
Samples/Automatic Layout/Custom DataSource/CustomDataSource/CustomDataSource_60.csproj.user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup /> | ||
<ItemGroup> | ||
<Page Update="MainWindow.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Update="NodeCreate.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
</ItemGroup> | ||
</Project> |
24 changes: 24 additions & 0 deletions
24
Samples/Automatic Layout/Custom DataSource/CustomDataSource/CustomDataSource_60.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31410.414 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomDataSource_60", "CustomDataSource_60.csproj", "{2115284A-6B1C-4173-A879-60D9C9BE7981}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{2115284A-6B1C-4173-A879-60D9C9BE7981}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {954FCF8B-1BCA-464B-8668-AFA06414EF5F} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.