-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from SatishRaj4377/WPF-900307-Samples_Revamp
WPF-900307-Samples Revamped
- Loading branch information
Showing
22 changed files
with
450 additions
and
163 deletions.
There are no files selected for viewing
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,5 @@ | ||
|
||
/Samples/PanTool/PanTool/.vs | ||
/Samples/PanTool/PanTool/PanTool/.vs | ||
/Samples/Ports/How to highlight the node port when mouse hovering/Sample/.vs | ||
/Samples/Symbol Designer/Symbol Designer/.vs |
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
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
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,65 @@ | ||
<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>PanTool</AssemblyName> | ||
<RootNamespace>PanTool</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="packages.config" /> | ||
<None Remove="Properties\Settings.settings" /> | ||
<None Include="Properties\Settings.settings" /> | ||
<None Remove="App.config" /> | ||
<None Include="App.config" /> | ||
<Compile Include="Form1.cs" /> | ||
<Compile Include="Form1.Designer.cs" /> | ||
<Compile Include="Program.cs" /> | ||
<PackageReference Include="Syncfusion.Diagram.Windows" Version="*" /> | ||
</ItemGroup> | ||
</Project> |
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.34330.188 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PanTool_60", "PanTool_60.csproj", "{6C5AF737-CE9D-4715-8306-D69639624A3A}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{6C5AF737-CE9D-4715-8306-D69639624A3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{6C5AF737-CE9D-4715-8306-D69639624A3A}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{6C5AF737-CE9D-4715-8306-D69639624A3A}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{6C5AF737-CE9D-4715-8306-D69639624A3A}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {68A2CB83-B043-40FC-97D3-7EF2EBFA97FE} | ||
EndGlobalSection | ||
EndGlobal |
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,65 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<UseWPF>true</UseWPF> | ||
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems> | ||
<EnableDefaultItems>false</EnableDefaultItems> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<AssemblyName>PanTool</AssemblyName> | ||
<RootNamespace>PanTool</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="packages.config" /> | ||
<None Remove="Properties\Settings.settings" /> | ||
<None Include="Properties\Settings.settings" /> | ||
<None Remove="App.config" /> | ||
<Compile Include="Form1.cs" /> | ||
<Compile Include="Form1.Designer.cs" /> | ||
<Compile Include="Program.cs" /> | ||
<None Include="App.config" /> | ||
<PackageReference Include="Syncfusion.Diagram.Windows" Version="*" /> | ||
</ItemGroup> | ||
</Project> |
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.34330.188 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PanTool_80", "PanTool_80.csproj", "{46A92397-E54C-4CA0-A5FC-55D5AF82C0FF}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{46A92397-E54C-4CA0-A5FC-55D5AF82C0FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{46A92397-E54C-4CA0-A5FC-55D5AF82C0FF}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{46A92397-E54C-4CA0-A5FC-55D5AF82C0FF}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{46A92397-E54C-4CA0-A5FC-55D5AF82C0FF}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {C2FCC1BA-C8E9-4A79-8C10-3FC15FF48BD4} | ||
EndGlobalSection | ||
EndGlobal |
This file was deleted.
Oops, something went wrong.
18 changes: 9 additions & 9 deletions
18
Samples/Ports/How to highlight the node port when mouse hovering/Sample/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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/> | ||
</startup> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="Syncfusion.Diagram.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-24.2460.3.0" newVersion="24.2460.3.0" /> | ||
<assemblyIdentity name="Syncfusion.Diagram.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral"/> | ||
<bindingRedirect oldVersion="0.0.0.0-24.2460.3.0" newVersion="24.2460.3.0"/> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="Syncfusion.Shared.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-24.2460.3.0" newVersion="24.2460.3.0" /> | ||
<assemblyIdentity name="Syncfusion.Shared.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral"/> | ||
<bindingRedirect oldVersion="0.0.0.0-24.2460.3.0" newVersion="24.2460.3.0"/> | ||
</dependentAssembly> | ||
<dependentAssembly> | ||
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-24.2460.3.0" newVersion="24.2460.3.0" /> | ||
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral"/> | ||
<bindingRedirect oldVersion="0.0.0.0-24.2460.3.0" newVersion="24.2460.3.0"/> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> | ||
</configuration> |
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
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
Oops, something went wrong.