Skip to content

Commit 75edb34

Browse files
authored
Merge pull request #285 from telerik/todor-vb-reporting
Todor vb reporting
2 parents 17fc0b3 + 69541c9 commit 75edb34

File tree

107 files changed

+85742
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+85742
-0
lines changed
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 Version 17
4+
VisualStudioVersion = 17.12.35527.113 d17.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WPFViewerNet8", "WPFViewerNet8\WPFViewerNet8.vbproj", "{1D0FD30B-6CD5-4D5E-B9E5-CB26A34A882E}"
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+
{1D0FD30B-6CD5-4D5E-B9E5-CB26A34A882E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{1D0FD30B-6CD5-4D5E-B9E5-CB26A34A882E}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{1D0FD30B-6CD5-4D5E-B9E5-CB26A34A882E}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{1D0FD30B-6CD5-4D5E-B9E5-CB26A34A882E}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Application x:Class="Application"
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:WPFViewerNet8"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
<ResourceDictionary>
8+
<ResourceDictionary.MergedDictionaries>
9+
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/System.Windows.xaml" />
10+
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.xaml" />
11+
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.Input.xaml" />
12+
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.Navigation.xaml" />
13+
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.ReportViewer.Wpf.xaml" />
14+
</ResourceDictionary.MergedDictionaries>
15+
</ResourceDictionary>
16+
</Application.Resources>
17+
</Application>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Class Application
2+
3+
' Application-level events, such as Startup, Exit, and DispatcherUnhandledException
4+
' can be handled in this file.
5+
6+
End Class
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Imports System.Windows
2+
3+
'The ThemeInfo attribute describes where any theme specific and generic resource dictionaries can be found.
4+
'1st parameter: where theme specific resource dictionaries are located
5+
'(used if a resource is not found in the page,
6+
' or application resource dictionaries)
7+
8+
'2nd parameter: where the generic resource dictionary is located
9+
'(used if a resource is not found in the page,
10+
'app, and any theme specific resource dictionaries)
11+
<Assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Window x:Class="MainWindow"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6+
xmlns:tr="http://schemas.telerik.com/wpf"
7+
xmlns:telerikControls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
8+
xmlns:telerikReporting="clr-namespace:Telerik.Reporting;assembly=Telerik.Reporting"
9+
xmlns:local="clr-namespace:WPFViewerNet8"
10+
mc:Ignorable="d"
11+
Title="MainWindow" Height="450" Width="800">
12+
<Grid>
13+
<tr:ReportViewer Grid.Row="1" x:Name="ReportViewer1" HorizontalAlignment="Stretch">
14+
<tr:ReportViewer.ReportSource>
15+
<telerikReporting:UriReportSource Uri="Reports\SampleReport.trdp">
16+
<telerikReporting:ReportSource.Parameters>
17+
<telerikReporting:Parameter Name="ParameterName_01" Value="ParameterValue_01"/>
18+
<telerikReporting:Parameter Name="ParameterName_02" Value="ParameterValue_02"/>
19+
</telerikReporting:ReportSource.Parameters>
20+
</telerikReporting:UriReportSource>
21+
</tr:ReportViewer.ReportSource>
22+
</tr:ReportViewer>
23+
</Grid>
24+
</Window>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Class MainWindow
2+
3+
End Class
Binary file not shown.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net8.0-windows</TargetFramework>
6+
<RootNamespace>WPFViewerNet8</RootNamespace>
7+
<UseWPF>true</UseWPF>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<Import Include="System.Windows" />
12+
<Import Include="System.Windows.Controls" />
13+
<Import Include="System.Windows.Data" />
14+
<Import Include="System.Windows.Documents" />
15+
<Import Include="System.Windows.Input" />
16+
<Import Include="System.Windows.Media" />
17+
<Import Include="System.Windows.Media.Imaging" />
18+
<Import Include="System.Windows.Navigation" />
19+
<Import Include="System.Windows.Shapes" />
20+
</ItemGroup>
21+
22+
<ItemGroup>
23+
<PackageReference Include="Telerik.ReportViewer.Wpf" Version="18.3.24.1218" />
24+
<PackageReference Include="Telerik.ReportViewer.Wpf.Themes" Version="18.3.24.1218" />
25+
<PackageReference Include="Telerik.Windows.Controls.Input.for.Wpf" Version="2024.4.1213" />
26+
<PackageReference Include="Telerik.Windows.Controls.Navigation.for.Wpf" Version="2024.4.1213" />
27+
<PackageReference Include="Telerik.Windows.Data.for.Wpf" Version="2024.4.1213" />
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<None Update="Reports\SampleReport.trdp">
32+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
33+
</None>
34+
</ItemGroup>
35+
36+
</Project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup />
4+
<ItemGroup>
5+
<ApplicationDefinition Update="Application.xaml">
6+
<SubType>Designer</SubType>
7+
</ApplicationDefinition>
8+
</ItemGroup>
9+
<ItemGroup>
10+
<Page Update="MainWindow.xaml">
11+
<SubType>Designer</SubType>
12+
</Page>
13+
</ItemGroup>
14+
</Project>
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 Version 17
4+
VisualStudioVersion = 17.12.35527.113 d17.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WebDesignerNetFramework", "WebDesignerNetFramework\WebDesignerNetFramework.vbproj", "{A9123BDD-6A19-4767-B5A0-4A10E06A1BAB}"
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+
{A9123BDD-6A19-4767-B5A0-4A10E06A1BAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A9123BDD-6A19-4767-B5A0-4A10E06A1BAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A9123BDD-6A19-4767-B5A0-4A10E06A1BAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A9123BDD-6A19-4767-B5A0-4A10E06A1BAB}.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)