Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
10 changes: 10 additions & 0 deletions Load and Save/Load the Security Document/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Load a PDF security documents
This example explains how to load a PDF security document. Here the document is hosted in a live server.

Documentation: https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/document-security

## Project pre-requisites
To run this application, you need Visual Studio 2019 or later versions.

## Deploying and running the sample
To debug while running the application, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
10 changes: 10 additions & 0 deletions Server Deployment/DeployWPF/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# How To Deploy PDF Viewer in WPF Blazor App
This section contains samples of how To Deploy PDF Viewer in WPF Blazor App.

Documentation: https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/deploy-wpf-blazor-app

## Project pre-requisites
To run this application, you need Visual Studio 2019 or later versions.

## Deploying and running the sample
To debug while running the application, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public partial class MainWindow : Window
public MainWindow()
{
InitializeComponent();
var serviceCollection = new ServiceCollection();
ServiceCollection serviceCollection = new ServiceCollection();
serviceCollection.AddWpfBlazorWebView();
serviceCollection.AddMemoryCache();
serviceCollection.AddSyncfusionBlazor();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Wpf" Version="9.0.110" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="*" />
</ItemGroup>

</Project>
10 changes: 10 additions & 0 deletions Server Deployment/WinForms/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# How To Deploy PDF Viewer in WinForms Blazor App
This section contains samples of how To Deploy PDF Viewer in WinForms Blazor App.

Documentation: https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/deploy-winforms-blazor-app

## Project pre-requisites
To run this application, you need Visual Studio 2019 or later versions.

## Deploying and running the sample
To debug while running the application, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
4 changes: 2 additions & 2 deletions Server Deployment/WinForms/WinFormsBlazorHybridApp/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ public partial class Form1 : Form
public Form1()
{
InitializeComponent();
var services = new ServiceCollection();
ServiceCollection services = new ServiceCollection();
services.AddWindowsFormsBlazorWebView();
services.AddMemoryCache();
services.AddSyncfusionBlazor();
var blazorWebView = new BlazorWebView()
BlazorWebView blazorWebView = new BlazorWebView()
{
HostPage = "wwwroot\\index.html",
Services = services.BuildServiceProvider(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="31.1.17" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.WindowsForms" Version="9.0.110" />
</ItemGroup>

Expand Down