Skip to content

Commit 67ac94f

Browse files
Merge pull request #1066 from telerik/didi/docs-release
add pdf to introduction
2 parents b4c2649 + 074eb9c commit 67ac94f

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

controls/barcode/1d-barcodes/specifications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following table describes the specific characteristics of the barcodes per t
3535
|Intelligent Mail|![barcode-1d-barcodes 023](images/barcode-1d-barcodes023.png)|The Intelligent Mail Barcode (IM barcode) is a 65-bar barcode for use on mail in the United States. The IM barcode is intended to provide greater information and functionality than its predecessors POSTNET and PLANET. |numeric|20, 25, 29 or 31|CRC check|
3636
|GS1-128|![barcode-1d-barcodes 017](images/barcode-1d-barcodes017.png)|GS1-128 is a special form of Code 128. It is used for goods and palettes in commerce and industry. The name GS1-128 replaces the old name EAN/UCC 128.|alphanumeric|variable (no fixed length)|Calculated according to Modulo 103|
3737
|UPC A|![barcode-1d-barcodes 018](images/barcode-1d-barcodes018.png)|UPC A is a barcode symbology, which consists of 12 digits, one of which is a checksum. This barcode identifies the manufacturer and specific product, so point-of-sale cash register systems can automatically look up the price.|01234567890|12 bzw. 8|Calculated according to Modulo 10|
38-
|UPC E|![barcode-1d-barcodes 019](images/barcode-1d-barcodes019.png)|UPC E is a variation of the UPCA symbol that is used for number system 0. By suppressing zeroes, UPCE codes can be printed in a very small space and are used for labeling small items.|01234567890|12 bzw. 8|Calculated according to Modulo 10|
38+
|UPC E|![barcode-1d-barcodes 019](images/barcode-1d-barcodes019.png)|UPC E is a variation of the UPCA symbol that is used for number system 0. By suppressing zeroes, UPCE codes can be printed in a very small space and are used for labeling small items.|01234567890|8 bzw. 6|Calculated according to Modulo 10|
3939
|UPC Supplement 2|![barcode-1d-barcodes 020](images/barcode-1d-barcodes020.png)|A two digit UPC supplementary code. This barcode should only be used with magazines, newspapers and other such periodicals.|0123456789|2|none|
4040
|UPC Supplement 5|![barcode-1d-barcodes 021](images/barcode-1d-barcodes021.png)|A five digit UPC supplementary code. This barcode is used on books to indicate a suggested retail price.|0123456789|5|none|
4141

introduction.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ This brand-new UI library comes with [sample demo applications]({%slug sampleapp
2121

2222
![Telerik UI for .NET MAUI documentation](front-image.png)
2323

24+
>tip This online MAUI documentation covers the latest version of Telerik UI for MAUI. If needed, download the [offline PDF MAUI documentation](#learning-resources) for the required product version.
25+
2426
## List of Controls
2527

2628
Telerik UI for .NET MAUI features the following controls for cross-platform development with .NET MAUI:
@@ -49,6 +51,7 @@ For any issues you might encounter while working with Telerik UI for .NET MAUI,
4951
* [Knowledge Base](https://docs.telerik.com/devtools/maui/knowledge-base)—As part of the Telerik UI .NET MAUI documentation, the Knowledge Base provides a collection of articles describing common use cases we came upon during our everyday work.
5052
* [Telerik UI for .NET MAUI Product Page](https://www.telerik.com/maui-ui)—The leading source of information on Telerik UI for .NET MAUI—it provides an overview of each component included in the suite, What's New section, Release History, and more.
5153
* [Telerik UI for .NET MAUI YouTube Channel](https://www.youtube.com/playlist?list=PLvmaC-XMqeBZnCAEuEcW9LsUnfQm65B1N)—Allows you in-depth surfing through the .NET MAUI videos that cover a variety of topics—from the why of transitioning to MAUI to DevOps in MAUI and more!
54+
* [Offline PDF documentation](https://www.telerik.com/account/downloads/product-download?product=MAUI)—Download the offline PDF documentations for the **Telerik UI for MAUI** and **Telerik Document Processing** under the **Documentation** section of your Telerik account.
5255

5356
## Next Steps
5457

knowledge-base/change-telerik-theme-runtime.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ To ensure that the Telerik .NET MAUI controls respond to app theme changes corre
3333

3434
**1.** [Enable the Telerik Theming in your app]({%slug themes-overview%}#using-the-maui-theming).
3535

36-
**2.** Detect the current system theme—use the `Application.RequestedTheme` property to get the current `AppTheme` and load the light or dark mode of the Telerik Theme, for example:
36+
**2.** Detect the current system theme—use the `Application.RequestedTheme` property to get the current `AppTheme`.
37+
38+
**2.1** Example with loading the light or dark `Purple` swatch of the `Telerik` theme:
3739

3840
```C#
3941
private void ApplyTelerikTheme()
@@ -50,6 +52,23 @@ private void ApplyTelerikTheme()
5052
}
5153
```
5254

55+
**2.2** Example with loading the light or dark swatch of the `Platform` theme:
56+
57+
```C#
58+
private void ApplyTelerikTheme()
59+
{
60+
var telerikTheming = Application.Current
61+
.Resources
62+
.MergedDictionaries
63+
.OfType<TelerikTheming>()
64+
.Single();
65+
66+
var swatchName = Application.Current.RequestedTheme == AppTheme.Dark ? "Dark" : "Light";
67+
telerikTheming.Theme = TelerikTheming.Themes
68+
.Single(t => t.Theme == "Platform" && t.Swatch == swatchName);
69+
}
70+
```
71+
5372
For more details on the `Application.RequestedTheme` property, see the <a href="https://learn.microsoft.com/en-us/dotnet/maui/user-interface/system-theme-changes?view=net-maui-8.0#detect-the-current-system-theme" target="_blank">Detect the current system theme | MS Learn</a> topic.
5473

5574
**3.** Switch the Telerik theme to dark or light mode&mdash;use the `Application.RequestedThemeChanged` event to detect whenever the system theme has been changed and update the Telerik resources:

0 commit comments

Comments
 (0)