经过大约两周的紧张开发,我很高兴在这里宣布 AtomUI OSS 5.1.2 版本发布,本次更新主要进行了 Icon 模块的彻底重构,放开对 Icon 的限制,开发者现在可以随意定制 Icon,同时为了开发者有丰富的图标资源,我们提供了谷歌 Material 和字节跳动的 IconPark 的图标库,欢迎大家使用。
与此同时,从这个小版本开始 AtomUI OSS 全面拥抱 .NET 10。
新特性
新增 AtomUI.Icons.Material 图标库
新增 AtomUI.Icons.IconPark 图标库
如果要使用 Material 和 IconPark 图标扩展包,请使用 v5.1.2 版本的 AtomUI.Desktop.Controls
特别感谢:
字节跳动 IconPark: https://iconpark.oceanengine.com/home
谷歌 Matrial Icons:https://fonts.google.com/icons
<atom:Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:atom="https://atomui.net"
xmlns:material="https://atomui.net/icons/material"
xmlns:iconpark="https://atomui.net/icons/iconpark"
xmlns:antdesign="https://atomui.net/icons/antdesign"
xmlns:local="using:AtomUIProgressApp"
x:Class="AtomUIProgressApp.MainWindow"
Title="AtomUIProgressApp"
Width="800"
Height="600"
x:DataType="local:MainWindow"
WindowState="Normal"
WindowStartupLocation="CenterScreen">
<Panel>
<StackPanel Orientation="Vertical" Spacing="10" HorizontalAlignment="Center" VerticalAlignment="Center">
<atom:GroupBox HeaderTitle="Icons" HorizontalAlignment="Center" Padding="20">
<StackPanel Spacing="10" Orientation="Horizontal">
<antdesign:WechatFilled Width="32" Height="32"/>
<material:DeviceBluetoothSearchingFilled Width="32" Height="32"/>
<iconpark:Cpu IconTheme="Filled" Width="32" Height="32"/>
</StackPanel>
</atom:GroupBox>
</StackPanel>
</Panel>
</atom:Window>
Bug 修复
-
修复 GroupBox 内容间距不正确的问题
AtomUI OSS 发展离不开开发者朋友的支持和帮助,如果您在使用过程中,发现任何问题欢迎在我们的开发者群和 Gitee 或者 Github 上给我们留下宝贵的意见,谢谢!