Skip to content

Commit 9d42bb1

Browse files
authored
Merge pull request #99 from bj-rn/feat/collections/refactor
Feat refactoring
2 parents 0065390 + 60a3b0e commit 9d42bb1

41 files changed

Lines changed: 3845 additions & 804 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Directory.Build.props

Lines changed: 0 additions & 7 deletions
This file was deleted.

VL.Avalonia.slnx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Solution>
22
<Folder Name="/Solution Items/">
33
<File Path=".github/workflows/main.yml" />
4-
<File Path="Directory.Build.props" />
4+
<File Path="Directory.Packages.props" />
55
<File Path="README.md" />
66
</Folder>
77
<Folder Name="/Solution Items/.nuget/">

VL.Avalonia/VL.Avalonia.vl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Document xmlns:p="property" xmlns:r="reflection" Id="UdZsKoLghO3Oihrrgteb4W" LanguageVersion="2025.7.1-0116-gaeae322323" Version="0.128">
3-
<NugetDependency Id="Fz1g9SnC5AAO0Sv79s4c5b" Location="VL.CoreLib" Version="2025.7.1-0116-gaeae322323" />
2+
<Document xmlns:p="property" xmlns:r="reflection" Id="UdZsKoLghO3Oihrrgteb4W" LanguageVersion="2025.7.1" Version="0.128">
3+
<NugetDependency Id="Fz1g9SnC5AAO0Sv79s4c5b" Location="VL.CoreLib" Version="2025.7.1" />
44
<Patch Id="CsQ26EoGhvMOM4U1aQide6">
55
<Canvas Id="IhgCT0sDhkhMddI2tTRHCe" DefaultCategory="Avalonia" CanvasType="FullCategory">
66
<Canvas Id="EdSDaNRGmemQWQjC87hvqy" Name="Controls" Position="604,230">
@@ -974,7 +974,7 @@
974974
<AssemblyReference ID="Avalonia.Controls.dll" />
975975
</p:TypeAnnotation>
976976
<Patch Id="NjAZFpvk3YmMTspbNGqr4l">
977-
<Canvas Id="VJO9A4dF5A7O6whL6ZCWey" BordersChecked="false" CanvasType="Group" />
977+
<Canvas Id="VJO9A4dF5A7O6whL6ZCWey" CanvasType="Group" />
978978
<ProcessDefinition Id="UGVwmTZldNoPYq5xnjiDFs" IsHidden="true" />
979979
</Patch>
980980
</Node>

VL.Avalonia/help/Reference Controls Collections ItemsControl.vl

Lines changed: 419 additions & 101 deletions
Large diffs are not rendered by default.

VL.Avalonia/help/Reference Controls Collections ListBox.vl

Lines changed: 280 additions & 166 deletions
Large diffs are not rendered by default.

VL.Avalonia/help/Reference Controls Collections TreeView.vl

Lines changed: 171 additions & 48 deletions
Large diffs are not rendered by default.

VL.Avalonia/help/Reference Controls DataTemplateSelector.vl

Lines changed: 518 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using Avalonia.Controls;
2+
3+
namespace VL.Avalonia.Controls
4+
{
5+
// TODO:
6+
internal abstract class ContentControlNodeBase<TControl, TValue> : ControlWrapperBase<TControl>
7+
where TControl : ContentControl, new() { }
8+
}

0 commit comments

Comments
 (0)