25 lines
1.6 KiB
XML
25 lines
1.6 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="AvaloniaApplication1.Views.GridSpliter"
|
|
Title="GridSpliter">
|
|
<Grid ColumnDefinitions="*,Auto,*" >
|
|
<TextBlock Background="Aqua" Foreground="White" TextWrapping="Wrap" Grid.Column="0">
|
|
iOS and Android Support
|
|
We've added support for both iOS and Android platforms. Developers can now build and run Avalonia applications on two of the most popular mobile platforms.
|
|
</TextBlock>
|
|
<GridSplitter Width="5" ShowsPreview="False" Grid.Column="1" HorizontalAlignment="Center" />
|
|
<TextBlock Background="Aquamarine" FontSize="20" Foreground="White" TextWrapping="Wrap" Grid.Column="2" >
|
|
Text Inlines
|
|
With the Text Inlines feature, you can easily construct complex formatted text blocks. It enables you to add annotations, hyperlinks, and other inline elements in your text.
|
|
|
|
Smooth Virtualization (Reworked ItemsControl)
|
|
We've completely reworked the ItemsControl to provide smooth virtualization. This improves the efficiency and user experience for controls with many items.
|
|
|
|
Performance Improvements
|
|
Avalonia 11.0 comes with significant performance improvements, enhancing the speed and efficiency of your applications.
|
|
</TextBlock>
|
|
</Grid>
|
|
</Window> |