Skip to content

Commit 43f904a

Browse files
Merge pull request #1 from SindhuTN/master
Kb samples committed
2 parents 0085fe2 + 8715c76 commit 43f904a

18 files changed

+790
-2
lines changed

App.ico

1.05 KB
Binary file not shown.

AssemblyInfo.cs

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
#region Copyright Syncfusion Inc. 2001 - 2006
2+
//
3+
// Copyright Syncfusion Inc. 2001 - 2006. All rights reserved.
4+
//
5+
// Use of this code is subject to the terms of our license.
6+
// A copy of the current license can be obtained at any time by e-mailing
7+
// licensing@syncfusion.com. Any infringement will be prosecuted under
8+
// applicable laws.
9+
//
10+
#endregion
11+
12+
using System.Reflection;
13+
using System.Runtime.CompilerServices;
14+
15+
//
16+
// General Information about an assembly is controlled through the following
17+
// set of attributes. Change these attribute values to modify the information
18+
// associated with an assembly.
19+
//
20+
[assembly: AssemblyTitle("")]
21+
[assembly: AssemblyDescription("")]
22+
[assembly: AssemblyConfiguration("")]
23+
[assembly: AssemblyCompany("")]
24+
[assembly: AssemblyProduct("")]
25+
[assembly: AssemblyCopyright("")]
26+
[assembly: AssemblyTrademark("")]
27+
[assembly: AssemblyCulture("")]
28+
29+
//
30+
// Version information for an assembly consists of the following four values:
31+
//
32+
// Major Version
33+
// Minor Version
34+
// Build Number
35+
// Revision
36+
//
37+
// You can specify all the values or you can default the Revision and Build Numbers
38+
// by using the '*' as shown below:
39+
40+
[assembly: AssemblyVersion("1.0.*")]
41+
42+
//
43+
// In order to sign your assembly you must specify a key to use. Refer to the
44+
// Microsoft .NET Framework documentation for more information on assembly signing.
45+
//
46+
// Use the attributes below to control which key is used for signing.
47+
//
48+
// Notes:
49+
// (*) If no key is specified, the assembly is not signed.
50+
// (*) KeyName refers to a key that has been installed in the Crypto Service
51+
// Provider (CSP) on your machine. KeyFile refers to a file which contains
52+
// a key.
53+
// (*) If the KeyFile and the KeyName values are both specified, the
54+
// following processing occurs:
55+
// (1) If the KeyName can be found in the CSP, that key is used.
56+
// (2) If the KeyName does not exist and the KeyFile does exist, the key
57+
// in the KeyFile is installed into the CSP and used.
58+
// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
59+
// When specifying the KeyFile, the location of the KeyFile should be
60+
// relative to the project output directory which is
61+
// %Project Directory%\obj\<configuration>. For example, if your KeyFile is
62+
// located in the project directory, you would specify the AssemblyKeyFile
63+
// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
64+
// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
65+
// documentation for more information on this.
66+
//
67+
[assembly: AssemblyDelaySign(false)]
68+
[assembly: AssemblyKeyFile("")]
69+
[assembly: AssemblyKeyName("")]

DataGrid_2015.csproj

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
3+
<PropertyGroup>
4+
<ProjectType>Local</ProjectType>
5+
<ProductVersion>10.0.20506</ProductVersion>
6+
<OldToolsVersion>2.0</OldToolsVersion>
7+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
8+
<SchemaVersion>2.0</SchemaVersion>
9+
<ProjectGuid>{F7337E47-936B-4B52-8F83-FC9B08500A37}</ProjectGuid>
10+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
11+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
12+
<ApplicationIcon>App.ico</ApplicationIcon>
13+
<AssemblyKeyContainerName>
14+
</AssemblyKeyContainerName>
15+
<AssemblyName>GridGroupingRebind</AssemblyName>
16+
<AssemblyOriginatorKeyFile>
17+
</AssemblyOriginatorKeyFile>
18+
<DefaultClientScript>JScript</DefaultClientScript>
19+
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
20+
<DefaultTargetSchema>IE50</DefaultTargetSchema>
21+
<DelaySign>false</DelaySign>
22+
<OutputType>WinExe</OutputType>
23+
<RootNamespace>GridGroupingRebind</RootNamespace>
24+
<StartupObject>
25+
</StartupObject>
26+
<PublishUrl>publish\</PublishUrl>
27+
<Install>true</Install>
28+
<InstallFrom>Disk</InstallFrom>
29+
<UpdateEnabled>false</UpdateEnabled>
30+
<UpdateMode>Foreground</UpdateMode>
31+
<UpdateInterval>7</UpdateInterval>
32+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
33+
<UpdatePeriodically>false</UpdatePeriodically>
34+
<UpdateRequired>false</UpdateRequired>
35+
<MapFileExtensions>true</MapFileExtensions>
36+
<ApplicationRevision>0</ApplicationRevision>
37+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
38+
<IsWebBootstrapper>false</IsWebBootstrapper>
39+
<UseApplicationTrust>false</UseApplicationTrust>
40+
<BootstrapperEnabled>true</BootstrapperEnabled>
41+
<TargetFrameworkProfile />
42+
</PropertyGroup>
43+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
44+
<PlatformTarget>x86</PlatformTarget>
45+
<OutputPath>bin\Debug\</OutputPath>
46+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
47+
<BaseAddress>285212672</BaseAddress>
48+
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
49+
<ConfigurationOverrideFile>
50+
</ConfigurationOverrideFile>
51+
<DefineConstants>DEBUG;TRACE;SyncfusionFramework2_0</DefineConstants>
52+
<DocumentationFile>
53+
</DocumentationFile>
54+
<DebugSymbols>true</DebugSymbols>
55+
<FileAlignment>4096</FileAlignment>
56+
<Optimize>false</Optimize>
57+
<RegisterForComInterop>false</RegisterForComInterop>
58+
<RemoveIntegerChecks>false</RemoveIntegerChecks>
59+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
60+
<WarningLevel>4</WarningLevel>
61+
<DebugType>full</DebugType>
62+
<ErrorReport>prompt</ErrorReport>
63+
<Prefer32Bit>false</Prefer32Bit>
64+
</PropertyGroup>
65+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
66+
<PlatformTarget>x86</PlatformTarget>
67+
<OutputPath>bin\Release\</OutputPath>
68+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
69+
<BaseAddress>285212672</BaseAddress>
70+
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
71+
<ConfigurationOverrideFile>
72+
</ConfigurationOverrideFile>
73+
<DefineConstants>TRACE;SyncfusionFramework2_0</DefineConstants>
74+
<DocumentationFile>
75+
</DocumentationFile>
76+
<DebugSymbols>false</DebugSymbols>
77+
<FileAlignment>4096</FileAlignment>
78+
<Optimize>true</Optimize>
79+
<RegisterForComInterop>false</RegisterForComInterop>
80+
<RemoveIntegerChecks>false</RemoveIntegerChecks>
81+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
82+
<WarningLevel>4</WarningLevel>
83+
<DebugType>none</DebugType>
84+
<ErrorReport>prompt</ErrorReport>
85+
<Prefer32Bit>false</Prefer32Bit>
86+
</PropertyGroup>
87+
<ItemGroup>
88+
<Reference Include="syncfusion.grid.base">
89+
</Reference>
90+
<Reference Include="syncfusion.grid.grouping.base">
91+
</Reference>
92+
<Reference Include="syncfusion.grid.grouping.windows">
93+
</Reference>
94+
<Reference Include="syncfusion.grid.windows">
95+
</Reference>
96+
<Reference Include="Syncfusion.GridHelperClasses.Windows, Version=16.2460.0.44, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
97+
<SpecificVersion>False</SpecificVersion>
98+
<HintPath>C:\Program Files (x86)\Syncfusion\Essential Studio\Windows\16.2.0.44\precompiledassemblies\4.6\Syncfusion.GridHelperClasses.Windows.dll</HintPath>
99+
</Reference>
100+
<Reference Include="syncfusion.grouping.base">
101+
</Reference>
102+
<Reference Include="Syncfusion.Licensing, Version=16.3460.0.21, Culture=neutral, PublicKeyToken=632609b4d040f6b4, processorArchitecture=MSIL">
103+
<SpecificVersion>False</SpecificVersion>
104+
<HintPath>C:\Program Files (x86)\Syncfusion\Essential Studio\Windows\16.2.0.44\precompiledassemblies\4.6\Syncfusion.Licensing.dll</HintPath>
105+
</Reference>
106+
<Reference Include="syncfusion.shared.base">
107+
</Reference>
108+
<Reference Include="syncfusion.shared.windows">
109+
</Reference>
110+
<Reference Include="Syncfusion.Tools.Base">
111+
</Reference>
112+
<Reference Include="Syncfusion.Tools.Windows">
113+
</Reference>
114+
<Reference Include="System">
115+
<Name>System</Name>
116+
</Reference>
117+
<Reference Include="System.Data">
118+
<Name>System.Data</Name>
119+
</Reference>
120+
<Reference Include="System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL" />
121+
<Reference Include="System.Design">
122+
<Name>System.Design</Name>
123+
</Reference>
124+
<Reference Include="System.Drawing">
125+
<Name>System.Drawing</Name>
126+
</Reference>
127+
<Reference Include="System.Windows.Forms">
128+
<Name>System.Windows.Forms</Name>
129+
</Reference>
130+
<Reference Include="System.Xml">
131+
<Name>System.XML</Name>
132+
</Reference>
133+
</ItemGroup>
134+
<ItemGroup>
135+
<Compile Include="Form2.cs">
136+
<SubType>Form</SubType>
137+
</Compile>
138+
<Compile Include="Form2.Designer.cs">
139+
<DependentUpon>Form2.cs</DependentUpon>
140+
</Compile>
141+
<Content Include="App.ico" />
142+
<Compile Include="AssemblyInfo.cs">
143+
<SubType>Code</SubType>
144+
</Compile>
145+
<Compile Include="Form1.cs">
146+
<SubType>Form</SubType>
147+
</Compile>
148+
<EmbeddedResource Include="Form1.resx">
149+
<DependentUpon>Form1.cs</DependentUpon>
150+
<SubType>Designer</SubType>
151+
</EmbeddedResource>
152+
<EmbeddedResource Include="Form2.resx">
153+
<DependentUpon>Form2.cs</DependentUpon>
154+
</EmbeddedResource>
155+
</ItemGroup>
156+
<ItemGroup>
157+
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
158+
<Visible>False</Visible>
159+
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
160+
<Install>true</Install>
161+
</BootstrapperPackage>
162+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
163+
<Visible>False</Visible>
164+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
165+
<Install>false</Install>
166+
</BootstrapperPackage>
167+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
168+
<Visible>False</Visible>
169+
<ProductName>.NET Framework 3.5 SP1</ProductName>
170+
<Install>false</Install>
171+
</BootstrapperPackage>
172+
<BootstrapperPackage Include="Microsoft.SQL.Server.Compact.3.5">
173+
<Visible>False</Visible>
174+
<ProductName>SQL Server Compact 3.5 SP2</ProductName>
175+
<Install>true</Install>
176+
</BootstrapperPackage>
177+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
178+
<Visible>False</Visible>
179+
<ProductName>Windows Installer 3.1</ProductName>
180+
<Install>true</Install>
181+
</BootstrapperPackage>
182+
</ItemGroup>
183+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
184+
<PropertyGroup>
185+
<PreBuildEvent>
186+
</PreBuildEvent>
187+
<PostBuildEvent>
188+
</PostBuildEvent>
189+
</PropertyGroup>
190+
</Project>

DataGrid_2015.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.23107.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataGrid_2015", "DataGrid_2015.csproj", "{F7337E47-936B-4B52-8F83-FC9B08500A37}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F7337E47-936B-4B52-8F83-FC9B08500A37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F7337E47-936B-4B52-8F83-FC9B08500A37}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F7337E47-936B-4B52-8F83-FC9B08500A37}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F7337E47-936B-4B52-8F83-FC9B08500A37}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

0 commit comments

Comments
 (0)