Skip to content

Commit 1c329d5

Browse files
Discard commit to accelerate sidebar
Discarding changes to the accelerate sidebar file, since it no longer exists on the v12 branch.
2 parents 8d55f5b + 3d7534d commit 1c329d5

File tree

2 files changed

+33
-8
lines changed

2 files changed

+33
-8
lines changed

docs/guides/graphics-and-animation/how-to-use-icons.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In Avalonia, using icons in your user interface can help to improve the look of
1010

1111

1212
## Using Icons in Avalonia
13-
Icons can be added to your Avalonia application in various ways. This guide will cover two common methods: using image files and using icon fonts.
13+
Icons can be added to your Avalonia application in various ways. This guide will cover three common methods: using image files, using icon fonts, and using path icons.
1414

1515
### Using Image Files
1616
One way to use icons in Avalonia is by using image files. You can use various formats like PNG, JPG, or BMP. Here's an example of how to use an image file as an icon:
@@ -31,6 +31,10 @@ Another way to use icons in Avalonia is by using icon fonts. Icon fonts allow yo
3131

3232
In this example, a `TextBlock` control is used to display an icon from the `FontAwesome` icon font. The `FontFamily` property of the `TextBlock` control is set to a resource URI that points to the font file, and the Text property is set to the Unicode value of the desired icon.
3333

34+
### Using Path Icons
35+
36+
Path icons can draw icons from `Geometry` which includes using paths from the scalable vector graphics (SVG) format that can be customized with size and color. See the [reference](/docs/reference/controls/path-icon) for how to use this control.
37+
3438
## Best Practices
3539

3640
While using icons can enhance the usability of your application, it is important to use them wisely. Keep the following tips in mind when using icons:

xpf/release-notes.md

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,44 @@ id: release-notes
33
title: Release Notes
44
---
55

6-
## XPF 1.5.3
6+
## XPF 1.6.0 (2026-01-19)
7+
8+
* Avalonia version updated from 11.3.1 to 11.3.11
9+
* Major rework has been done in the following areas:
10+
* Mouse capture and loss of capture
11+
* Clipboard (bitmap support, custom formats, round-tripping)
12+
* Added support for Ctrl+Click on macOS, F10 as system key
13+
* Added support for System.Windows.Documents.Typography properties
14+
* Added support for filter index in file dialogs
15+
* Popup fixes (positioning, disabled when dialog shown)
16+
* MessageBox functionality aligned with Windows (title, max size)
17+
* Text fixes and improvements (line spacing, inline blocks, font loading and matching)
18+
* Automation fixes and improvements
19+
* DPI and scaling fixes and improvements-
20+
* All log sinks made available
21+
22+
Known issues:
23+
* Switching tabs in TabControl does not invalidate UIA tree
24+
* AvaloniaHost takes all input once focused
25+
* Closing popup from its button might require an extra click
26+
27+
## XPF 1.5.3 (2025-06-23)
728

829
* Fix MediaContext to use Stopwatch instead of system clock
930
* Adjust WinForms MessageBoxTheme
1031
* Enforce WPF LineSpacing
1132

12-
## XPF 1.5.2
33+
## XPF 1.5.2 (2025-06-09)
1334

1435
* Limit the width of a MessageBox to 400px to closely follow the WIN32 behavior
1536
* Limit the MessageBox to 80% of the current screen's height
1637
* Update Avalonia to stable 11.3.1
1738

18-
## XPF 1.5.1
39+
## XPF 1.5.1 (2025-05-21)
1940

2041
* Change VB MsgBox default title to be identical to Windows
2142

22-
## XPF 1.5.0
43+
## XPF 1.5.0 (2025-05-07)
2344

2445
* Apply TextAlignment to overflowed AVTextLine
2546
* BmpBitmapDecoderHandle - support 1-Bit BMP
@@ -64,7 +85,7 @@ title: Release Notes
6485
* Implement OpenFolderDialog
6586
* Don't call win32 `GetCursorPos` in `Popup`.
6687

67-
## XPF 1.4.0
88+
## XPF 1.4.0 (2025-01-08)
6889

6990
* Remove System.Configuration.ConfigurationManager usages
7091
* Fix ModifierKeys.MacControl value
@@ -103,7 +124,7 @@ title: Release Notes
103124
* Use default WPF behavior if ALC support wasn't explicitly enabled
104125
* Adjust TextLine clipping when the line isn't collapsed
105126

106-
## XPF 1.3.0
127+
## XPF 1.3.0 (2024-08-12)
107128

108129
* Enable ECDSA-based license keys
109130
* Fix multiple Geometry APIs
@@ -165,7 +186,7 @@ title: Release Notes
165186
* Reset popup _positionInfo when creating a new win
166187

167188

168-
## XPF 1.2.0
189+
## XPF 1.2.0 (2024-05-29)
169190

170191
* Update ImageSharp
171192
* Make DragDrop handler work with any Control rather than TopLevel

0 commit comments

Comments
 (0)