Blog Post

Choosing Your .NET MAUI Document Strategy

Illustration: Choosing Your .NET MAUI Document Strategy

.NET MAUI is a new cross-platform framework from Microsoft aimed at creating mobile and desktop applications from a single codebase. The technology promises the ability to run a single application on four different operating systems: Windows, macOS, iOS, and Android.

In this blog post, we’ll explore several different options for adding PDF document viewing and editing capabilities to your new MAUI projects by leveraging PSPDFKit SDKs.

.NET MAUI Blazor

The easiest way to add a full PDF document viewing and editing experience to your MAUI applications is to leverage the PSPDFKit for Web SDK. PSPDFKit for Web is a React web application that utilizes WebAssembly for efficient document rendering and processing. The SDK can be integrated into a MAUI application using Blazor through the BlazorWebView component, or via the more lightweight WebView. With this approach, PSPDFKit for Web is able to run completely locally on device on all platforms supported by MAUI. Due to its responsive design, it can easily adapt to different screen sizes — including small mobile screens.

You can build your entire application using web technologies, or mix and match with native MAUI user interfaces (UIs). In the latter case, the SDK can easily be controlled and configured from .NET by bridging calls to JavaScript.

To learn more about this approach, please check out How to Build a .NET MAUI PDF Viewer with the PSPDFKit SDK.

.NET MAUI XML

Native MAUI UIs are built using XAML, Microsoft’s declarative UI language of choice. If you’d prefer to build a PDF viewing experience using MAUI controls directly, you can leverage GdPicture.NET SDK. This library comes with dedicated MAUI interfaces and a source-available example to get you started. With this approach, you’ll be able to fully tailor the UI to your exact needs and build out a wide variety of PDF viewing and manipulation use cases leveraging GdPicture.NET’s advanced APIs.

Upgrading from Xamarin

In essence, MAUI is an evolution of Xamarin, specifically Xamarin.Forms. For mobile projects, this opens up another integration option. You can opt to use PSPDFKit’s Xamarin C# bindings for iOS and Android, which were upgraded to support MAUI and give you access to the full UI and API capabilities of PSPDFKit for iOS and PSPDFKit for Android. This is the best option to achieve a fully native UI experience on mobile.

Conclusion

In summary, if you’re looking to add PDF document viewing and editing capabilities to your new .NET MAUI projects, you have several options to choose from among PSPDFKit SDKs. You can opt for web technologies to get a fully featured viewer, use native controls to build your own viewing UI, or leverage Xamarin C# bindings for the best mobile experience. In any case, you can count on PSPDFKit SDKs to kickstart the job for you.

Share Post
Free 60-Day Trial Try PSPDFKit in your app today.
Free Trial

Related Articles

Explore more
PRODUCTS  |  .NET

PDF-to-Office Conversion with GdPicture.NET SDK

DEVELOPMENT  |  .NET

Extracting Key-Value Pairs Using GdPicture.NET SDK

TUTORIALS  |  .NET • How To

How to Manipulate and Edit PDFs in .NET with PdfSharpCore