Skip to content

Commit 435c595

Browse files
authored
update to 25-1 Fluent (#4)
1 parent 1815fa7 commit 435c595

File tree

5 files changed

+11
-14
lines changed

5 files changed

+11
-14
lines changed

CS/SpellCheck/Pages/_Layout.cshtml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@using Microsoft.AspNetCore.Components.Web
22
@namespace SpellCheck.Pages
3+
@using DevExpress.Blazor
34
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
45

56
<!DOCTYPE html>
@@ -8,12 +9,14 @@
89
<meta charset="utf-8" />
910
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1011
<base href="~/" />
11-
<link href="_content/DevExpress.Blazor.Themes/blazing-berry.bs5.css" rel="stylesheet" />
12-
12+
@foreach (var file in Themes.Fluent.GetFilePaths()){
13+
<link href="@file" rel="stylesheet" />
14+
}
15+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
1316
<link href="~/css/site.css" rel="stylesheet" />
1417
<link href="SpellCheck.styles.css" rel="stylesheet" />
1518
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
16-
<link href="_content/DevExpress.Blazor.RichEdit/dx-blazor-richedit.bs5.css" rel="stylesheet" />
19+
<link href="_content/DevExpress.Blazor.RichEdit/dx-blazor-richedit.css" rel="stylesheet" />
1720
</head>
1821
<body>
1922
@{

CS/SpellCheck/SpellCheck.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Folder Include="wwwroot\images\" />
1010
</ItemGroup>
1111
<ItemGroup>
12-
<PackageReference Include="DevExpress.Blazor" Version="24.2.1-alpha-24207" />
13-
<PackageReference Include="DevExpress.Blazor.RichEdit" Version="24.2.1-alpha-24207" />
12+
<PackageReference Include="DevExpress.Blazor" Version="25.1.*-*" />
13+
<PackageReference Include="DevExpress.Blazor.RichEdit" Version="25.1.*-*" />
1414
</ItemGroup>
15-
</Project>
15+
</Project>

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
<!-- default badges list -->
2-
![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/568709069/25.1.3%2B)
3-
[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T1128858)
4-
[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183)
5-
[![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives)
6-
<!-- default badges end -->
71
# Blazor Rich Text Editor – How to Customize the Built-in Spell Check Service
82

93
This example customizes the built-in spell check service of the DevExpress [Blazor Rich Text Editor](https://docs.devexpress.com/Blazor/401891/rich-text-editor) component.
@@ -12,7 +6,7 @@ The code adds French and German dictionaries to its list of supported dictionari
126

137
This example also changes the maximum number of suggestions and allows users to add words to dictionaries.
148

15-
![Blazor DxRichEdit Customize the Spell Check Service](/image.gif)
9+
![Blazor DxRichEdit Customize the Spell Check Service](/spell-check.gif)
1610

1711
## Overview
1812

@@ -64,7 +58,7 @@ The Rich Text Editor uses all dictionaries to check spelling when the `DocumentC
6458
## More Examples
6559

6660
- [Blazor Rich Text Editor - How to implement custom document save capabilities](https://github.com/DevExpress-Examples/blazor-dxrichedit-custom-saving)
67-
- [Blazor Rich Text Editor - How to export a document to a file (HTML format)](https://github.com/DevExpress-Examples/blazor-dxrichedit-export-to-html)
61+
- [Blazor Rich Text Editor - How to export a document to a file (DOC format)](https://github.com/DevExpress-Examples/blazor-dxrichedit-export-to-doc)
6862
<!-- feedback -->
6963
## Does this example address your development requirements/objectives?
7064

image.gif

-770 KB
Binary file not shown.

spell-check.gif

667 KB
Loading

0 commit comments

Comments
 (0)