Skip to content

Commit

Permalink
Merge pull request #89 from SatishRaj4377/WPF-915840-Added_CTRL_Drag_…
Browse files Browse the repository at this point in the history
…Duplicate_Diisable_Sample

WPF-915840-Added CTRL Drag Duplicate Diisable Sample
  • Loading branch information
KarkuvelRajan authored Dec 13, 2024
2 parents 99344ca + 840810b commit 2b944d3
Show file tree
Hide file tree
Showing 19 changed files with 1,112 additions and 0 deletions.
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.8"/>
</startup>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Application x:Class="Simple_SfDiagram_WPF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Simple_SfDiagram_WPF"
StartupUri="MainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
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 Simple_SfDiagram_WPF
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
<?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>{2D05EB05-E8C6-4327-9026-43BA588BAB16}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Simple_SfDiagram_WPF</RootNamespace>
<AssemblyName>Simple SfDiagram WPF</AssemblyName>
<TargetFrameworkVersion>v4.8</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>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</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>
</ItemGroup>
<ItemGroup>
<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" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Syncfusion.SfDiagram.WPF" Version="*" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35506.116 d17.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CtrlDragDisableDuplication_462", "CtrlDragDisableDuplication_462.csproj", "{2D05EB05-E8C6-4327-9026-43BA588BAB16}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<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>Simple SfDiagram WPF</AssemblyName>
<RootNamespace>Simple_SfDiagram_WPF</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" />
<ApplicationDefinition Include="App.xaml" />
<Compile Include="App.xaml.cs" />
<Compile Include="MainWindow.xaml.cs" />
<PackageReference Include="Syncfusion.SfDiagram.WPF" Version="*" />
</ItemGroup>
<ItemGroup>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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}") = "CtrlDragDisableDuplication_60", "CtrlDragDisableDuplication_60.csproj", "{2D05EB05-E8C6-4327-9026-43BA588BAB16}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<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>Simple SfDiagram WPF</AssemblyName>
<RootNamespace>Simple_SfDiagram_WPF</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" />
<ApplicationDefinition Include="App.xaml" />
<PackageReference Include="Syncfusion.SfDiagram.WPF" Version="*" />
<Compile Include="App.xaml.cs" />
<Compile Include="MainWindow.xaml.cs" />
</ItemGroup>
<ItemGroup>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.226.21692
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CtrlDragDisableDuplication_80", "CtrlDragDisableDuplication_80.csproj", "{2D05EB05-E8C6-4327-9026-43BA588BAB16}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2D05EB05-E8C6-4327-9026-43BA588BAB16}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Loading

0 comments on commit 2b944d3

Please sign in to comment.