Skip to content

Commit 94662d8

Browse files
Sample included for Drag Drop between TreeGrid and ListView included.
1 parent 8e0660d commit 94662d8

17 files changed

+1096
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Drag Drop between TreeGrid and ListView", "Drag Drop between TreeGrid and ListView\Drag Drop between TreeGrid and ListView.csproj", "{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
Release-XML|Any CPU = Release-XML|Any CPU
13+
EndGlobalSection
14+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15+
{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}.Release-XML|Any CPU.ActiveCfg = Release|Any CPU
20+
{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}.Release-XML|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(SolutionProperties) = preSolution
23+
HideSolutionNode = FALSE
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
5+
</startup>
6+
</configuration>
4.19 KB
Binary file not shown.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="Drag_Drop_between_TreeGrid_and_ListView.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:Drag_Drop_between_TreeGrid_and_ListView"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace Drag_Drop_between_TreeGrid_and_ListView
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{F691CE0A-B5E3-416E-9DCC-6DCF7A3FAD99}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Drag_Drop_between_TreeGrid_and_ListView</RootNamespace>
11+
<AssemblyName>Drag Drop between TreeGrid and ListView</AssemblyName>
12+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15+
<WarningLevel>4</WarningLevel>
16+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
17+
<TargetFrameworkProfile />
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<PlatformTarget>AnyCPU</PlatformTarget>
21+
<DebugSymbols>true</DebugSymbols>
22+
<DebugType>full</DebugType>
23+
<Optimize>false</Optimize>
24+
<OutputPath>bin\Debug\</OutputPath>
25+
<DefineConstants>DEBUG;TRACE</DefineConstants>
26+
<ErrorReport>prompt</ErrorReport>
27+
<WarningLevel>4</WarningLevel>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<PlatformTarget>AnyCPU</PlatformTarget>
31+
<DebugType>pdbonly</DebugType>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DefineConstants>TRACE</DefineConstants>
35+
<ErrorReport>prompt</ErrorReport>
36+
<WarningLevel>4</WarningLevel>
37+
</PropertyGroup>
38+
<ItemGroup>
39+
<Reference Include="Syncfusion.Data.WPF, Version=16.2460.0.20, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\..\..\..\..\Program Files (x86)\Syncfusion\Essential Studio\WPF\16.2.0.20\precompiledassemblies\4.6\Syncfusion.Data.WPF.dll</HintPath>
42+
</Reference>
43+
<Reference Include="Syncfusion.SampleLayout, Version=16.2400.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
44+
<SpecificVersion>False</SpecificVersion>
45+
<HintPath>..\..\..\..\..\4.0\Syncfusion.SampleLayout.dll</HintPath>
46+
</Reference>
47+
<Reference Include="Syncfusion.SfGrid.WPF, Version=16.2460.0.20, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\..\..\..\..\Program Files (x86)\Syncfusion\Essential Studio\WPF\16.2.0.20\precompiledassemblies\4.6\Syncfusion.SfGrid.WPF.dll</HintPath>
50+
</Reference>
51+
<Reference Include="Syncfusion.Shared.WPF, Version=16.2451.0.20, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
53+
<HintPath>..\..\..\..\Program Files (x86)\Syncfusion\Essential Studio\WPF\16.2.0.20\precompiledassemblies\4.6\Syncfusion.Shared.WPF.dll</HintPath>
54+
</Reference>
55+
<Reference Include="System" />
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
58+
<SpecificVersion>False</SpecificVersion>
59+
<HintPath>..\..\..\..\Users\jaiganeshs\Desktop\System.Windows.Interactivity.dll</HintPath>
60+
</Reference>
61+
<Reference Include="System.Xml" />
62+
<Reference Include="Microsoft.CSharp" />
63+
<Reference Include="System.Core" />
64+
<Reference Include="System.Xml.Linq" />
65+
<Reference Include="System.Data.DataSetExtensions" />
66+
<Reference Include="System.Net.Http" />
67+
<Reference Include="System.Xaml">
68+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
69+
</Reference>
70+
<Reference Include="WindowsBase" />
71+
<Reference Include="PresentationCore" />
72+
<Reference Include="PresentationFramework" />
73+
</ItemGroup>
74+
<ItemGroup>
75+
<ApplicationDefinition Include="App.xaml">
76+
<Generator>MSBuild:Compile</Generator>
77+
<SubType>Designer</SubType>
78+
</ApplicationDefinition>
79+
<Compile Include="ViewModel.cs" />
80+
<Page Include="MainWindow.xaml">
81+
<Generator>MSBuild:Compile</Generator>
82+
<SubType>Designer</SubType>
83+
</Page>
84+
<Compile Include="App.xaml.cs">
85+
<DependentUpon>App.xaml</DependentUpon>
86+
<SubType>Code</SubType>
87+
</Compile>
88+
<Compile Include="DragDropBehavior.cs" />
89+
<Compile Include="EmployeeInfo.cs" />
90+
<Compile Include="MainWindow.xaml.cs">
91+
<DependentUpon>MainWindow.xaml</DependentUpon>
92+
<SubType>Code</SubType>
93+
</Compile>
94+
</ItemGroup>
95+
<ItemGroup>
96+
<Compile Include="Properties\AssemblyInfo.cs">
97+
<SubType>Code</SubType>
98+
</Compile>
99+
<Compile Include="Properties\Resources.Designer.cs">
100+
<AutoGen>True</AutoGen>
101+
<DesignTime>True</DesignTime>
102+
<DependentUpon>Resources.resx</DependentUpon>
103+
</Compile>
104+
<Compile Include="Properties\Settings.Designer.cs">
105+
<AutoGen>True</AutoGen>
106+
<DependentUpon>Settings.settings</DependentUpon>
107+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
108+
</Compile>
109+
<EmbeddedResource Include="Properties\Resources.resx">
110+
<Generator>ResXFileCodeGenerator</Generator>
111+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
112+
</EmbeddedResource>
113+
<None Include="Properties\Settings.settings">
114+
<Generator>SettingsSingleFileGenerator</Generator>
115+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
116+
</None>
117+
<AppDesigner Include="Properties\" />
118+
</ItemGroup>
119+
<ItemGroup>
120+
<None Include="App.config" />
121+
</ItemGroup>
122+
<ItemGroup>
123+
<Resource Include="App.ico" />
124+
</ItemGroup>
125+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
126+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
127+
Other similar extension points exist, see Microsoft.Common.targets.
128+
<Target Name="BeforeBuild">
129+
</Target>
130+
<Target Name="AfterBuild">
131+
</Target>
132+
-->
133+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectView>ShowAllFiles</ProjectView>
5+
</PropertyGroup>
6+
<PropertyGroup>
7+
<ReferencePath>C:\4.0\</ReferencePath>
8+
</PropertyGroup>
9+
</Project>

0 commit comments

Comments
 (0)