Update routes to include '/example' prefix in .razor files

Updated the `@page` directives in `DocumentViewer.razor`,
`ReportDesigner.razor`, `ReportViewer.razor`, and `TestViewer.razor`
to prepend the `/example` prefix to their respective routes.

This change modifies the URL paths for accessing these components
to better organize or namespace the routes under the `/example`
prefix. No functional or structural changes were made to the
components themselves.
This commit is contained in:
2026-06-10 11:24:37 +02:00
parent d7f86adffe
commit e420e8d47a
4 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
@page "/documentviewer" @page "/example/documentviewer"
<DxDocumentViewer ReportName="LargeDatasetReport" CssClass="dx-blazor-reporting-container" Height="@null" Width="@null"> <DxDocumentViewer ReportName="LargeDatasetReport" CssClass="dx-blazor-reporting-container" Height="@null" Width="@null">
<DxDocumentViewerTabPanelSettings Width="340" /> <DxDocumentViewerTabPanelSettings Width="340" />

View File

@@ -1,4 +1,4 @@
@page "/sender" @page "/example/sender"
@using DevExpress.DataAccess.Json; @using DevExpress.DataAccess.Json;
@using EnvelopeGenerator.ReceiverUI.Services; @using EnvelopeGenerator.ReceiverUI.Services;

View File

@@ -1,5 +1,5 @@
@page "/receiver/{EnvelopeKey}" @page "/example/receiver/{EnvelopeKey}"
@page "/report-viewer/{EnvelopeKey}" @page "/example/report-viewer/{EnvelopeKey}"
@using System.Drawing @using System.Drawing
@using DevExpress.Blazor @using DevExpress.Blazor
@using DevExpress.Drawing @using DevExpress.Drawing

View File

@@ -1,4 +1,4 @@
@page "/test" @page "/example/test"
@using System.Drawing @using System.Drawing
@using DevExpress.Drawing @using DevExpress.Drawing
@using DevExpress.Utils @using DevExpress.Utils