Skip to content

Commit 4b6286a

Browse files
modified changes
1 parent 21eadbe commit 4b6286a

File tree

10 files changed

+26
-26
lines changed

10 files changed

+26
-26
lines changed

winui/Common/accessibility.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ control: Accessibility
77
documentation: ug
88
---
99

10-
# Accessibility for Syncfusion® WinUI Controls
10+
# Accessibility for Syncfusion<sup>&reg;</sup> WinUI Controls
1111

12-
Accessibility is about making a windows application usable in a wide range of environments for people who use technology and approach a UI with a wide range of experiences. There are many different types of disabilities in the world including mobility, vision, color perception, hearing, speech, cognition, and literacy. However, these requirements can be met by utilizing the accessibility features of Syncfusion&reg; UI WinUI controls. The controls support assistive technologies like screen readers, which take advantage of accessibility frameworks.
12+
Accessibility is about making a windows application usable in a wide range of environments for people who use technology and approach a UI with a wide range of experiences. There are many different types of disabilities in the world including mobility, vision, color perception, hearing, speech, cognition, and literacy. However, these requirements can be met by utilizing the accessibility features of Syncfusion<sup>&reg;</sup> UI WinUI controls. The controls support assistive technologies like screen readers, which take advantage of accessibility frameworks.
1313

1414
The following sections explain the accessibility features.
1515

1616
## UI automation
1717

18-
The Syncfusion&reg; WinUI control provides accessibility for the UI automation framework as well as the support provided by base classes derived from `FrameworkElementAutomationPeer`. The control class makes use of the UI automation concepts such as automation peers and automation patterns to report the controls' role and content to UI automation clients.
18+
The Syncfusion<sup>&reg;</sup> WinUI control provides accessibility for the UI automation framework as well as the support provided by base classes derived from `FrameworkElementAutomationPeer`. The control class makes use of the UI automation concepts such as automation peers and automation patterns to report the controls' role and content to UI automation clients.
1919

2020
A user can use a tool like screen readers to obtain the necessary information about the controls from UI Automation. When a control receives focus, the screen reader reads the text associated with that control.
2121

2222
## Keyboard support
2323

24-
Syncfusion&reg; WinUI controls provide keyboard support including tab navigation, text input, and control-specific support. For example, the `SfTreeView` control supports arrow-key navigation for item selection.
24+
Syncfusion<sup>&reg;</sup> WinUI controls provide keyboard support including tab navigation, text input, and control-specific support. For example, the `SfTreeView` control supports arrow-key navigation for item selection.
2525

2626
## High contrast themes
2727

winui/Common/localization.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ control: Localization
77
documentation: ug
88
---
99

10-
# Localization of Syncfusion&reg; WinUI controls
10+
# Localization of Syncfusion<sup>&reg;</sup> WinUI controls
1111

1212
Localization is the process of making an application multilingual by formatting the content according to the languages. This involves configuring the application for a specific language. For example,
13-
`en-US` is the language of English spoken in the United States, while `en-GB` is the language of English spoken in Great Britain. Syncfusion&reg; WinUI controls can be localized by adding resource files for each language.
13+
`en-US` is the language of English spoken in the United States, while `en-GB` is the language of English spoken in Great Britain. Syncfusion<sup>&reg;</sup> WinUI controls can be localized by adding resource files for each language.
1414

1515
## Changing application language
1616

@@ -42,7 +42,7 @@ The following screenshot illustrates how the localization is applied to the data
4242

4343
The following steps can be used to generate .resw files for any language:
4444

45-
N> The default resource files of all Syncfusion&reg; WinUI libraries can be obtained from [GitHub](https://github.com/syncfusion/winui-controls-localization-resource-files).
45+
N> The default resource files of all Syncfusion<sup>&reg;</sup> WinUI libraries can be obtained from [GitHub](https://github.com/syncfusion/winui-controls-localization-resource-files).
4646

4747
1) Right-click the project and add a New folder named as "Resources".
4848

@@ -62,4 +62,4 @@ N> If the `SfDataGrid` control is used in the application, copy and paste the `S
6262
6363
## Editing default language strings
6464

65-
The default string of any control can be changed by adding the default .resw files (from [GitHub](https://github.com/syncfusion/winui-controls-localization-resource-files)) to the Resources folder of the application. If the default string is added, Syncfusion&reg; WinUI controls reads it from the .resw files of the application.
65+
The default string of any control can be changed by adding the default .resw files (from [GitHub](https://github.com/syncfusion/winui-controls-localization-resource-files)) to the Resources folder of the application. If the default string is added, Syncfusion<sup>&reg;</sup> WinUI controls reads it from the .resw files of the application.

winui/Common/right-to-left.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
Right to left (RTL) support allows you to change the direction of text and other UI elements flow within the controls' layout.
1313

14-
Syncfusion&reg; WinUI controls allow you to change the flow direction and are suitable for all applications that are localized in right to left languages. The layout of the control direction can be changed by setting the [FlowDirection](https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.frameworkelement.flowdirection?view=winrt-19041) to `RightToLeft`.
14+
Syncfusion<sup>&reg;</sup> WinUI controls allow you to change the flow direction and are suitable for all applications that are localized in right to left languages. The layout of the control direction can be changed by setting the [FlowDirection](https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.frameworkelement.flowdirection?view=winrt-19041) to `RightToLeft`.
1515

1616
The following example shows a `TreeView` control with RTL direction.
1717

winui/Common/themes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ documentation: ug
88
---
99

1010

11-
# Themes for Syncfusion&reg; WinUI Controls
11+
# Themes for Syncfusion<sup>&reg;</sup> WinUI Controls
1212

1313
Themes provide a sense of visual continuity for the Windows apps.
1414
It allows you to customize the appearance of the application.
1515
The theme affects the colors of the Controls' background, foreground, border brush, font, etc.
1616

1717
## Supported themes
1818

19-
Syncfusion&reg; WinUI controls support Light and Dark themes.
19+
Syncfusion<sup>&reg;</sup> WinUI controls support Light and Dark themes.
2020

2121
**Light theme**
2222

@@ -29,7 +29,7 @@ Syncfusion&reg; WinUI controls support Light and Dark themes.
2929
## Applying themes at the application level
3030

3131
The theme for the whole application can be changed using the `RequestedTheme` property available in App.xaml.
32-
Syncfusion&reg; control adopts to Theme settings, when it is applied using the `RequestedTheme` property.
32+
Syncfusion<sup>&reg;</sup> control adopts to Theme settings, when it is applied using the `RequestedTheme` property.
3333

3434
{% tabs %}
3535
{% highlight xaml %}
@@ -88,9 +88,9 @@ N> When the RequestedTheme value is set on a FrameworkElement, it is inherited b
8888

8989
## Theme resource
9090

91-
Syncfusion&reg; provides a theme resource file for all Syncfusion&reg; WinUI Project Reunion controls. By referring to this file, the appearance of the controls can be customized at the application level.
91+
Syncfusion<sup>&reg;</sup> provides a theme resource file for all Syncfusion<sup>&reg;</sup> WinUI Project Reunion controls. By referring to this file, the appearance of the controls can be customized at the application level.
9292

93-
Theme resource files for Syncfusion&reg; WinUI controls can be referred from this [link](https://github.com/syncfusion/winui-controls-theme-resource-files).
93+
Theme resource files for Syncfusion<sup>&reg;</sup> WinUI controls can be referred from this [link](https://github.com/syncfusion/winui-controls-theme-resource-files).
9494

9595
### Modify theme resource at application level
9696

winui/Ribbon/Getting-Started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Getting Started with WinUI Ribbon
1111

12-
This section explains the steps required to add the Ribbon control and its elements such as ribbon tabs, ribbon groups, built in ribbon items, custom ribbon items, right pane, backstage and its items. This section also covers the basic features needed to get started with Syncfusion&reg; ribbon control.
12+
This section explains the steps required to add the Ribbon control and its elements such as ribbon tabs, ribbon groups, built in ribbon items, custom ribbon items, right pane, backstage and its items. This section also covers the basic features needed to get started with Syncfusion<sup>&reg;</sup> ribbon control.
1313

1414
## Creating an application with WinUI Ribbon
1515

winui/Ribbon/Overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# WinUI Ribbon Overview
1111

12-
The Syncfusion&reg; [WinUI Ribbon](https://www.syncfusion.com/winui-controls/ribbon) is a command bar that organizes an application’s commands and tools into a series of tabs. It also supports a backstage view as like in Microsoft Office products.
12+
The Syncfusion<sup>&reg;</sup> [WinUI Ribbon](https://www.syncfusion.com/winui-controls/ribbon) is a command bar that organizes an application’s commands and tools into a series of tabs. It also supports a backstage view as like in Microsoft Office products.
1313

1414
## Key features
1515

winui/Ribbon/RibbonResizing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Ribbon Resizing in WinUI Ribbon Control
1111

12-
The Syncfusion&reg; WinUI SfRibbon supports expanding/collapsing the ribbon elements to the available space while resizing the control. It performs expand operation while the control size is increased and performs collapse operation while the control size decreased. It allows resizing ribbon elements for both normal and simplified layouts. By default, the ribbon elements are resized based on group size. Also, we have an option to resize the ribbon elements in the custom order.
12+
The Syncfusion<sup>&reg;</sup> WinUI SfRibbon supports expanding/collapsing the ribbon elements to the available space while resizing the control. It performs expand operation while the control size is increased and performs collapse operation while the control size decreased. It allows resizing ribbon elements for both normal and simplified layouts. By default, the ribbon elements are resized based on group size. Also, we have an option to resize the ribbon elements in the custom order.
1313

1414
We can specify the ribbon elements size using `AllowedSizeModes` property. It is a flagged enum to arrange the ribbon elements in varied sizes depending on available space. It has values Small, Normal, and Large to specify the size of the ribbon elements. As it is a flagged enum, we can give the combination of values to the AllowedSizeModes property. The default value is `Small, Normal, Large`.
1515

winui/System-Requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation: ug
1010

1111
# System Requirements for WinUI Components
1212

13-
The system requirements for using our Syncfusion&reg; WinUI platform are as follows
13+
The system requirements for using our Syncfusion<sup>&reg;</sup> WinUI platform are as follows
1414

1515
## Operating Systems
1616

winui/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ documentation: ug
1010
> With the 2024 Volume 4 release, we will discontinue support for .NET Framework 4.0 in WinForms, WPF, ASP.NET MVC, and Document Processing Libraries. Please plan to upgrade to .NET Framework 4.6.2 or higher.<br>
1111
With the 2025 Volume 1 release, we will discontinue support for .NET 6.0 and 7.0 in WinForms, WPF, WinUI, and Document Processing Libraries. Please plan to upgrade to .Net 8.0 or higher.
1212

13-
# Syncfusion&reg; WinUI Controls
13+
# Syncfusion<sup>&reg;</sup> WinUI Controls
1414

15-
The Syncfusion&reg; WinUI Controls are the suite, ever needed to create state of art WinUI applications.
15+
The Syncfusion<sup>&reg;</sup> WinUI Controls are the suite, ever needed to create state of art WinUI applications.
1616

1717
## How to read this user guide most effectively
1818

winui/samples.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ control: Samples
77
documentation: ug
88
---
99

10-
# Featured Samples for Syncfusion&reg; WinUI Controls
10+
# Featured Samples for Syncfusion<sup>&reg;</sup> WinUI Controls
1111

12-
## Syncfusion&reg; WinUI control panel
12+
## Syncfusion<sup>&reg;</sup> WinUI control panel
1313

14-
To explore Syncfusion&reg; WinUI controls and components, open the `Syncfusion&reg; WinUI Controls Panel` by searching it from Start and Open.
14+
To explore Syncfusion<sup>&reg;</sup> WinUI controls and components, open the `Syncfusion<sup>&reg;</sup> WinUI Controls Panel` by searching it from Start and Open.
1515

1616
![WinUI Control Panel Search](Guide-to-run-the-samples-images/winui-control-panel-search.png)
1717

@@ -21,9 +21,9 @@ C:\Program Files (x86)\Syncfusion\Essential Studio\WinUI\{{ site.releaseversion
2121

2222
N> In the above section, latest Essential Studio version details has been provided. Refer installed Essential Studio version instead of mentioned version.
2323

24-
## Syncfusion&reg; Controls Gallery for WinUI Desktop
24+
## Syncfusion<sup>&reg;</sup> Controls Gallery for WinUI Desktop
2525

26-
The Syncfusion&reg; WinUI desktop controls can be explored in the Visual Studio by clicking `Run Local Demos`.
26+
The Syncfusion<sup>&reg;</sup> WinUI desktop controls can be explored in the Visual Studio by clicking `Run Local Demos`.
2727

2828
![Explore Syncfusion WinUI Demos with Desktop Project](Guide-to-run-the-samples-images/exploring-winui-desktop-sample-browser-new.png)
2929

@@ -54,4 +54,4 @@ For example, following is a demonstration to run an individual `Chart` control p
5454

5555
## Download demos from online (clone from github repository)
5656

57-
Explore the Syncfusion&reg; WinUI controls using [GitHub WinUI demos](https://github.com/syncfusion/winui-demos), where all WinUI demos are configured using `NuGet` to run without installing Syncfusion&reg; WinUI Studio.
57+
Explore the Syncfusion<sup>&reg;</sup> WinUI controls using [GitHub WinUI demos](https://github.com/syncfusion/winui-demos), where all WinUI demos are configured using `NuGet` to run without installing Syncfusion<sup>&reg;</sup> WinUI Studio.

0 commit comments

Comments
 (0)