Max Katz
55640f0c2b
(hack?) Fix stackoverflow
3 years ago
Max Katz
0fcf67d1cd
Add failing test
3 years ago
Benedikt Stebner
ec6cd48de9
Merge pull request #10893 from AvaloniaUI/maxkatz6-patch-1
Move WithInterFont to the global Avalonia namespace
3 years ago
Max Katz
935c0b549d
Move WithInterFont to the global Avalonia namespace
To keep it in line with other AppBuilder extensions, keeping Program.cs file simpler
3 years ago
Max Katz
e4ed304234
Merge pull request #10884 from CollinAlpert/nullability_fix
Fix nullability of List<FileDialogFilter>
3 years ago
Collin Alpert
659a256aa6
Fix nullability
3 years ago
Nikita Tsukanov
f859713822
Merge pull request #10874 from robloo/privateassets
Mark Tmds.DBus.* as PrivateAssets in Avalonia.FreeDesktop.csproj
3 years ago
robloo
b7fa91a0ad
Remove `PrivateAssets="All"` from Tmds.DBus.Protocol package ref
3 years ago
robloo
541787274d
Mark Tmds.DBus.* as PrivateAssets in Avalonia.FreeDesktop.csproj
3 years ago
Max Katz
2ea7d94ec0
Merge pull request #10816 from robloo/colorpicker-updates-6
ColorPicker Fixes
3 years ago
Max Katz
5225441c02
Merge pull request #10820 from Gillibald/fixes/moreTextProcessingFixes
Fix NRE for AvaloniaNativeTextInputMethod
3 years ago
Max Katz
f08f13e5ce
Merge branch 'master' into colorpicker-updates-6
3 years ago
Max Katz
c42aea87d1
Merge pull request #10822 from AvaloniaUI/fixes/10684-default-value-coerce
Allow coercing default property value.
3 years ago
Max Katz
f64aafede3
Merge pull request #10802 from AvaloniaUI/system_bar_color
Add SystemBarColor Attached Property to TopLevel
3 years ago
Max Katz
269d18e063
Merge pull request #10830 from ltetak/fix_drag_resize
DataGrid column resize near edge fix
3 years ago
Max Katz
daa0e5c7c1
Merge pull request #10832 from AvaloniaUI/fixes/10680-devtools-readonly-properties
DEvTools: bind read-only properties one-way.
3 years ago
Max Katz
e579a56ace
Merge pull request #10840 from Gillibald/fixes/getTextBoundsEndOfParagraph
[Text]Fix GetTextBounds
3 years ago
Max Katz
19f2865afb
Merge branch 'master' into fixes/moreTextProcessingFixes
3 years ago
Max Katz
ef24eb8606
Merge pull request #10824 from Enscape/feature/propertyobservable-convert-func
Added conversion option to `PropertyObservable`
3 years ago
Max Katz
7108484eaf
Merge pull request #10827 from AvaloniaUI/refactor/readonly-itemscontrol-items
Make ItemsControl.Items readonly.
3 years ago
Max Katz
1126361405
Merge pull request #10821 from Gillibald/fixes/selectableTextBlock
Fix SelectableTextBlock selection
3 years ago
Max Katz
3d6dce88e5
Merge pull request #10864 from AvaloniaUI/fixes/10814-dont-layout-invisible-controls
Don't layout invisible controls
3 years ago
Max Katz
293a55d66b
Merge pull request #10833 from AvaloniaUI/scrollviewer_sample
Merge scroll viewer samples
3 years ago
Max Katz
870ffbd13d
Merge branch 'master' into fixes/selectableTextBlock
3 years ago
Steven Kirk
6dd9106fe5
Don't layout invisible controls.
And fix unit tests that were relying on this behavior.
3 years ago
Steven Kirk
44639fbd65
Added failing layout test.
3 years ago
Max Katz
8d8b84d2ef
Merge pull request #10860 from AvaloniaUI/fixes/glyphruntests-leak
Stop GlyphRunTests leaking IPlatformRenderInterface.
3 years ago
Max Katz
88b3eaf562
Merge branch 'master' into fixes/glyphruntests-leak
3 years ago
Max Katz
0e24c1062c
Merge pull request #10842 from AvaloniaUI/fixes/do-not-use-ui-thread-objects-in-platform-render-interface
Don't use AvaloniaObject in IPlatformRenderInterface
3 years ago
Max Katz
afede23e75
Merge pull request #10858 from AvaloniaUI/fixes/inherited-property-change
Fix inherited property change notifications.
3 years ago
Steven Kirk
a28483252b
Make MaskedTextBox tests pass again.
They need a registered `IPlatformRenderInterface` and were only passing because `GlyphRunTests` was leaking one.
3 years ago
Steven Kirk
668fa942b7
Don't leak IPlatformRenderInterface.
3 years ago
Steven Kirk
683afe6e9f
Use correct newValue on inherited property change.
- `oldValue` was misnamed - it's the new value
- We calculated the new value and then didn't pass it to children for their property changed events: they were using the default value which may be wrong if the value is set further up the tree
3 years ago
Steven Kirk
cd5307aa8c
Added failing test.
3 years ago
Max Katz
9a4d1d2c09
Merge branch 'master' into fixes/do-not-use-ui-thread-objects-in-platform-render-interface
3 years ago
Tim
def3b74217
Merge branch 'master' into fixes/selectableTextBlock
3 years ago
Max Katz
660033c770
Merge pull request #10836 from AvaloniaUI/fixes/10626-menuitem-headertemplate
Make data templates work again with MenuItem.
3 years ago
Max Katz
e2534938a7
Merge branch 'master' into fixes/do-not-use-ui-thread-objects-in-platform-render-interface
3 years ago
Emmanuel Hansen
904be53ffa
merge scroll viewer samples
3 years ago
Nikita Tsukanov
6dfc2cadf4
Merge pull request #10826 from affederaffe/bump-tmds.dbus.sourcegenerator
Bump Tmds.DBus.SourceGenerator
3 years ago
Nikita Tsukanov
95121725bf
Merge branch 'master' into fixes/do-not-use-ui-thread-objects-in-platform-render-interface
3 years ago
Nikita Tsukanov
312f1250e2
Don't use AvaloniaObject in IPlatformRenderInterface
3 years ago
Benedikt Stebner
f432d6f0a9
Fix GetTextBounds for combinations of EndOfParargrap and embedded RTL text
3 years ago
affederaffe
6506049076
Merge branch 'master' into bump-tmds.dbus.sourcegenerator
3 years ago
Steven Kirk
3ecbb895d1
Merge pull request #10834 from Gillibald/imeFixes
[Windows ]Only bypass WM_CHAR if previous composition is not empty
3 years ago
Steven Kirk
b7a249107b
Make data templates work again with MenuItem.
- `MenuItem` is a `HeaderedSelectingItemsControl` not a `HeaderedItemsControl` so need to separate logic for that case when preparing items
- Added `HeaderTemplate` to `HeaderedSelectingItemsControl `
- Tweaked logic for selecting header templates: parent's `ItemTemplate` should be used if set (cross-checked with WPF)
- Update menu templates to bind to menu item's `HeaderTemplate`
Fixes #10626
Fixes #10718
3 years ago
Steven Kirk
7bb6d06ac5
Added failing test for #10626 and #10718 .
3 years ago
Benedikt Stebner
b2a4e85e23
Only bypass WM_CHAR if previous composition is not empty
3 years ago
Nikita Tsukanov
8b881f01b9
Writable composition properties
3 years ago
Steven Kirk
13a586077f
Bind readonly properties one-way.
Fixes #10680 .
3 years ago