2025年10月12日
摘要:
置顶的 C# Avalonia配置 已经更新 ExpandElement.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmln
阅读全文
posted @ 2025-10-12 03:12
dalgleish
阅读(12)
推荐(0)
2025年10月10日
摘要:
自定义扩展已经更新 C# Avalonia 扩展 - 所有例子必备 RotateButtonWithLayout.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/w
阅读全文
posted @ 2025-10-10 11:45
dalgleish
阅读(8)
推荐(0)
2025年10月6日
摘要:
RotateButton.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.micr
阅读全文
posted @ 2025-10-06 11:52
dalgleish
阅读(16)
推荐(0)
2025年9月28日
摘要:
CachingTest.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.micro
阅读全文
posted @ 2025-09-28 15:18
dalgleish
阅读(14)
推荐(0)
2025年9月27日
摘要:
FrameRates.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.micros
阅读全文
posted @ 2025-09-27 11:51
dalgleish
阅读(17)
推荐(0)
2025年9月26日
摘要:
CustomEasingFunction.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://sche
阅读全文
posted @ 2025-09-26 12:28
dalgleish
阅读(17)
推荐(0)
2025年9月25日
摘要:
Easing.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.
阅读全文
posted @ 2025-09-25 15:59
dalgleish
阅读(15)
推荐(0)
2025年9月24日
摘要:
在上一个AnimationPlayer例子上进行扩展,让其具备完整的小型动画功能。 AnimationPlayer类 public partial class AnimationPlayer : ObservableObject { // 内部类 public class TimedAction {
阅读全文
posted @ 2025-09-24 13:21
dalgleish
阅读(14)
推荐(0)
2025年9月20日
摘要:
自己实现一个AnimationPlayer类,已完善了大部分功能。 AnimationPlayer类 public partial class AnimationPlayer : ObservableObject { // 内部类 public class TimedAction { public
阅读全文
posted @ 2025-09-20 11:31
dalgleish
阅读(9)
推荐(0)
2025年9月17日
摘要:
同样用两种方式实现动画,各位自行选择。实现了一个ArithmeticConverter类。 ArithmeticConverter.cs类 using Avalonia.Data.Converters; using System; using System.Collections.Generic;
阅读全文
posted @ 2025-09-17 13:06
dalgleish
阅读(22)
推荐(0)