From 7d05ee8446c022a0b9cbefcaaacdb7e4159c6746 Mon Sep 17 00:00:00 2001
From: Dominik Titl <78549750+morning4coffe-dev@users.noreply.github.com>
Date: Mon, 11 Mar 2024 18:44:18 +0100
Subject: [PATCH 1/3] docs: Reference Overview Tech Bites video
---
doc/Learn/Markup/Overview.md | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/doc/Learn/Markup/Overview.md b/doc/Learn/Markup/Overview.md
index 2860da12a0..2679523999 100644
--- a/doc/Learn/Markup/Overview.md
+++ b/doc/Learn/Markup/Overview.md
@@ -16,6 +16,17 @@ You will quickly discover why C# Markup is a developer favorite with:
- Refactoring support
- Custom Controls and 3rd party libraries
+
+
+
+
Let's jump in and take a look at a simple sample that displays 'Hello Uno Platform!' in the center of the screen:
```cs
From 272fa76072dbb84ac392ba2f65a9a187dffc87cf Mon Sep 17 00:00:00 2001
From: Dominik Titl <78549750+morning4coffe-dev@users.noreply.github.com>
Date: Mon, 11 Mar 2024 18:44:29 +0100
Subject: [PATCH 2/3] docs: Reference Resources Tech Bites video
---
doc/Learn/Markup/Resources.md | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/doc/Learn/Markup/Resources.md b/doc/Learn/Markup/Resources.md
index e566660e2e..030e84f185 100644
--- a/doc/Learn/Markup/Resources.md
+++ b/doc/Learn/Markup/Resources.md
@@ -5,6 +5,17 @@ uid: Uno.Extensions.Markup.Resources
All `FrameworkElement`-inheriting types and `Application` have a couple of special extensions to help you manage your resources.
+
+
+
+
## Merging Resource Dictionaries
To merge resource dictionaries, you simply need to add a `ResourceDictionary` to the `Application` or `FrameworkElement` like:
From fecd5087c9e4927ac8d3cd9d63b27f7d79cc3ef1 Mon Sep 17 00:00:00 2001
From: Dominik Titl <78549750+morning4coffe-dev@users.noreply.github.com>
Date: Mon, 11 Mar 2024 18:44:36 +0100
Subject: [PATCH 3/3] docs: Reference Styles Tech Bites video
---
doc/Learn/Markup/Styles.md | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/doc/Learn/Markup/Styles.md b/doc/Learn/Markup/Styles.md
index 720489dc0d..e71716b7c2 100644
--- a/doc/Learn/Markup/Styles.md
+++ b/doc/Learn/Markup/Styles.md
@@ -10,6 +10,18 @@ new Style()
.Setters(s => s.FontSize(14))
```
+
+
+
+
+
## Basing a Style on another Style
Sometimes you may want to base a style on another style. This can be done one of two ways. The first is that you can provide the name/key of the style. It is important to remember that this has a limitation of only working for globally accessible styles through the Application and is best used for default styles.