随笔分类 -  C# Avalonia

1 2 3 4 5 ··· 9 下一页
教程
C# Avalonia 19- DataBinding- DataGridGrouping
摘要:DataGridGrouping.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas. 阅读全文
posted @ 2026-02-20 12:10 dalgleish 阅读(16) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- DirectoryTreeView
摘要:DirectoryTreeView.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas 阅读全文
posted @ 2026-02-18 11:11 dalgleish 阅读(5) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- BoundTreeView
摘要:BoundTreeView.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.mic 阅读全文
posted @ 2026-02-16 10:04 dalgleish 阅读(10) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- CustomListViewTest
摘要:CustomListViewTest.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schema 阅读全文
posted @ 2026-02-14 12:27 dalgleish 阅读(7) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- BasicListView
摘要:BasicListView.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.mic 阅读全文
posted @ 2026-02-13 10:25 dalgleish 阅读(4) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- NavigateCollection
摘要:NavigateCollection.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schema 阅读全文
posted @ 2026-02-12 13:23 dalgleish 阅读(5) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- ComboBoxSelectionBox
摘要:ComboBoxSelectionBox.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://sche 阅读全文
posted @ 2026-02-11 11:23 dalgleish 阅读(7) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- ExpandingDataTemplate
摘要:ExpandingDataTemplate.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://sch 阅读全文
posted @ 2026-02-10 12:53 dalgleish 阅读(6) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- VariedTemplates
摘要:最终项目中,我已经把SingleCriteriaHighlightTemplateSelector写成了通用类,支持复杂的模板选择。这里先给出SingleCriteriaHighlightTemplateSelector的代码,作为例子展示。 SingleCriteriaHighlightTempl 阅读全文
posted @ 2026-02-09 11:34 dalgleish 阅读(6) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- DataTemplateControls
摘要:DataTemplateControls.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://sche 阅读全文
posted @ 2026-02-09 04:17 dalgleish 阅读(6) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- DataTemplateByType
摘要:DataTemplateByType.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schema 阅读全文
posted @ 2026-02-08 05:00 dalgleish 阅读(6) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- DataTemplateList
摘要:常常看我的置顶,随时更新。https://www.cnblogs.com/dalgleish/p/18967204 最后的项目打包代码里,会有很多抽象通用StoreDB类等,用于加载SQLite,Json和Xml。通过动态解析类名,来匹配数据。由于代码太长,我就放到最后完结时,项目打包里。 Data 阅读全文
posted @ 2026-01-30 12:25 dalgleish 阅读(16) 评论(1) 推荐(0)
C# Avalonia 19- DataBinding- VariedStyles
摘要:VariedStyles.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.micr 阅读全文
posted @ 2026-01-19 05:15 dalgleish 阅读(9) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- CheckBoxList
摘要:CheckBoxList.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.micr 阅读全文
posted @ 2026-01-05 06:54 dalgleish 阅读(17) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- RadioButtonList
摘要:自定义扩展已经更新,增加了MessageBox类。https://www.cnblogs.com/dalgleish/p/18972924 RadioButtonList.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="h 阅读全文
posted @ 2026-01-04 03:16 dalgleish 阅读(15) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- BindToObjectDataProvider
摘要:自己写一个ObjectDataProvider类 ObjectDataProvider.cs代码 using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections; using System.Coll 阅读全文
posted @ 2026-01-02 08:00 dalgleish 阅读(16) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- ValidationTest
摘要:ValidationTest.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.mi 阅读全文
posted @ 2026-01-01 08:54 dalgleish 阅读(14) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- VirtualizationTest
摘要:VirtualizationTest.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schema 阅读全文
posted @ 2025-12-18 11:28 dalgleish 阅读(12) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- BindToLinqFilteredCollection
摘要:BindToLinqFilteredCollection.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="htt 阅读全文
posted @ 2025-12-17 12:38 dalgleish 阅读(11) 评论(0) 推荐(0)
C# Avalonia 19- DataBinding- BindToDataSet
摘要:BindToDataSet.axaml代码 <Window xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.mic 阅读全文
posted @ 2025-12-16 15:05 dalgleish 阅读(12) 评论(0) 推荐(0)

1 2 3 4 5 ··· 9 下一页