Skip to content

Commit fca779e

Browse files
Sample included for Drag drop between TreeGrid and TreeViewadv.
1 parent 297c0e6 commit fca779e

17 files changed

+1041
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 TreeView", "Drag drop between TreeGrid and TreeView\Drag drop between TreeGrid and TreeView.csproj", "{569A7B32-21B0-4B44-960F-53CDE79AB88A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug-Xml|Any CPU = Debug-Xml|Any CPU
12+
Release|Any CPU = Release|Any CPU
13+
Release-Xml|Any CPU = Release-Xml|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Debug-Xml|Any CPU.ActiveCfg = Debug|Any CPU
19+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Debug-Xml|Any CPU.Build.0 = Debug|Any CPU
20+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU
23+
{569A7B32-21B0-4B44-960F-53CDE79AB88A}.Release-Xml|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
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_TreeView.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_TreeView"
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_TreeView
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}
Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
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>{569A7B32-21B0-4B44-960F-53CDE79AB88A}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Drag_drop_between_TreeGrid_and_TreeView</RootNamespace>
11+
<AssemblyName>Drag drop between TreeGrid and TreeView</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.2400.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\..\..\..\4.0\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.2400.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\..\..\..\4.0\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>..\..\..\..\4.0\Syncfusion.Shared.Wpf.dll</HintPath>
54+
</Reference>
55+
<Reference Include="Syncfusion.Tools.Wpf, Version=16.2400.0.46, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
56+
<SpecificVersion>False</SpecificVersion>
57+
<HintPath>..\..\..\..\4.0\Syncfusion.Tools.Wpf.dll</HintPath>
58+
</Reference>
59+
<Reference Include="System" />
60+
<Reference Include="System.Data" />
61+
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
62+
<SpecificVersion>False</SpecificVersion>
63+
<HintPath>..\..\..\..\Users\jaiganeshs\Desktop\System.Windows.Interactivity.dll</HintPath>
64+
</Reference>
65+
<Reference Include="System.Xml" />
66+
<Reference Include="Microsoft.CSharp" />
67+
<Reference Include="System.Core" />
68+
<Reference Include="System.Xml.Linq" />
69+
<Reference Include="System.Data.DataSetExtensions" />
70+
<Reference Include="System.Net.Http" />
71+
<Reference Include="System.Xaml">
72+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
73+
</Reference>
74+
<Reference Include="WindowsBase" />
75+
<Reference Include="PresentationCore" />
76+
<Reference Include="PresentationFramework" />
77+
</ItemGroup>
78+
<ItemGroup>
79+
<ApplicationDefinition Include="App.xaml">
80+
<Generator>MSBuild:Compile</Generator>
81+
<SubType>Designer</SubType>
82+
</ApplicationDefinition>
83+
<Compile Include="ViewModel.cs" />
84+
<Page Include="MainWindow.xaml">
85+
<Generator>MSBuild:Compile</Generator>
86+
<SubType>Designer</SubType>
87+
</Page>
88+
<Compile Include="App.xaml.cs">
89+
<DependentUpon>App.xaml</DependentUpon>
90+
<SubType>Code</SubType>
91+
</Compile>
92+
<Compile Include="DragDropBehavior.cs" />
93+
<Compile Include="EmployeeInfo.cs" />
94+
<Compile Include="MainWindow.xaml.cs">
95+
<DependentUpon>MainWindow.xaml</DependentUpon>
96+
<SubType>Code</SubType>
97+
</Compile>
98+
</ItemGroup>
99+
<ItemGroup>
100+
<Compile Include="Properties\AssemblyInfo.cs">
101+
<SubType>Code</SubType>
102+
</Compile>
103+
<Compile Include="Properties\Resources.Designer.cs">
104+
<AutoGen>True</AutoGen>
105+
<DesignTime>True</DesignTime>
106+
<DependentUpon>Resources.resx</DependentUpon>
107+
</Compile>
108+
<Compile Include="Properties\Settings.Designer.cs">
109+
<AutoGen>True</AutoGen>
110+
<DependentUpon>Settings.settings</DependentUpon>
111+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
112+
</Compile>
113+
<EmbeddedResource Include="Properties\Resources.resx">
114+
<Generator>ResXFileCodeGenerator</Generator>
115+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
116+
</EmbeddedResource>
117+
<None Include="Properties\Settings.settings">
118+
<Generator>SettingsSingleFileGenerator</Generator>
119+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
120+
</None>
121+
<AppDesigner Include="Properties\" />
122+
</ItemGroup>
123+
<ItemGroup>
124+
<None Include="App.config" />
125+
</ItemGroup>
126+
<ItemGroup>
127+
<Resource Include="App.ico" />
128+
</ItemGroup>
129+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
131+
Other similar extension points exist, see Microsoft.Common.targets.
132+
<Target Name="BeforeBuild">
133+
</Target>
134+
<Target Name="AfterBuild">
135+
</Target>
136+
-->
137+
</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)