Giuseppe Lippolis
10e3fc7828
fixes(DataGrid): Warning CS0414 The field 'CellEditBinding.SubjectWrapper._settingSourceValue' is assigned but its value is never used
5 years ago
Giuseppe Lippolis
7ee5446ee4
fixes(DataGrid): Warning CS0649 Field 'DataGridPathGroupDescription._valueConverter' is never assigned to, and will always have its default value null
5 years ago
Tako
3867a68ade
Fix EntryPointNotFound on Windows 8 due to missing version check ( #6471 )
* Prevent calls to unavailable entrypoint 'GetDpiForMonitor' on Win8 (#5357 )
* Introduce Windows8 platform constant
* wip
Co-authored-by: Tim Schneeberger <tim.schneeberger@outlook.de>
Co-authored-by: Tim Schneeberger <thebone.main@gmail.com>
Co-authored-by: Dan Walmsley <dan@walms.co.uk>
5 years ago
Giuseppe Lippolis
8dbf3bf86e
fixes(Win32.Interop): field 'Direct2DImageSurface._oldDpi' is never assigned to, and will always have its default value
5 years ago
Steven Kirk
341e435321
Check enabled state as well as visibility.
WPF and Avalonia's `IsEnabled` properties are slightly different.
In WPF if reflects both the enabled state of the actual control and the effectively enabled state which comes from ancestor controls. In Avalonia that effectively enabled state is exposed on a different property: `IsEffectivelyEnabled`. When I ported the tab navigation code from WPF, I didn't take that into account.
WPF's visibility property however doesn't reflect the state of a control's owners and so tab navigation for invisible controls works correctly. Take advantage of this fact by changing any checks for `IsVisible` to also check `IsEnabled`.
5 years ago
kaminova
dcc033f819
Close popup if combobox is not visible ( #6404 )
* Close popup if combobox is not visible
* fix unsupported feature
Co-authored-by: kaminova <flake@inbox@gmail.com>
Co-authored-by: Max Katz <maxkatz6@outlook.com>
5 years ago
Sergey Mikolaytis
1a95905efe
[Menu] [Interaction] Allow end user to change menu show delay globally ( #6392 )
Co-authored-by: Max Katz <maxkatz6@outlook.com>
5 years ago
Steven Kirk
5df9e5760c
Add #nullable and XML doc comments to system dialogs.
5 years ago
Max Katz
0f83ccb4b0
ContentPresenter should create child without content, if template was set ( #6226 )
* Fix #6224
* Fix data templates Match
* Do not use preview features
* Do not create Child if Content is null and DataTemplate was set
* Update src/Avalonia.Base/Utilities/TypeUtilities.cs
* Update src/Avalonia.Controls/Presenters/ContentPresenter.cs
* Update src/Avalonia.Controls/Presenters/ContentPresenter.cs
5 years ago
Steven Kirk
51862d1b4b
Don't display warning when TryCreateAndRegister succeeds.
5 years ago
Wiesław Šoltés
7aa6152b34
Revert "Fix skia OpacityMask push and pop methods"
This reverts commit dc404b545e .
5 years ago
Wiesław Šoltés
834f3b01b8
Add Not value converter to BoolConverters
5 years ago
Wiesław Šoltés
08dea6498e
Check for TextBox.Text null in AutoCompleteBox
5 years ago
Luis von der Eltz
71ac5e3db8
Only IPopupHost should be root visual
5 years ago
Luis v.d.Eltz
08849539a7
Update comment
Co-authored-by: Steven Kirk <grokys@users.noreply.github.com>
5 years ago
Luis v.d.Eltz
d666a4263c
Update comment
Co-authored-by: Steven Kirk <grokys@users.noreply.github.com>
5 years ago
Luis von der Eltz
ae222e25e6
Mark IVisualTreeHost [Obsolete]
5 years ago
Sergey Mikolaytis
da06a15d16
[OverlayPopupHost] remove render white rect override
5 years ago
Dariusz Komosiński
d8dec842a3
Allow for controling delay of scrollbar hide/show.
5 years ago
Wiesław Šoltés
39e7d362b2
Enable antialiasing for PushGeometryClip
5 years ago
Wiesław Šoltés
dc404b545e
Fix skia OpacityMask push and pop methods
5 years ago
Steven Kirk
7e6d59d670
Respect CancellationToken in RunLoop.
5 years ago
Luis von der Eltz
5fb8126d2d
Add label for frozen popups to status bar
5 years ago
Luis von der Eltz
dbb8427e3a
Make event actually keydown
5 years ago
Takoooooo
0370472997
update
5 years ago
Takoooooo
f283921e28
fix
5 years ago
Takoooooo
c2c9790111
update
5 years ago
Takoooooo
01b87381b7
enable multitouch
5 years ago
Takoooooo
3dd91adc27
add comments
5 years ago
Max Katz
64922a34a9
Add CornerRadius to TemplatedControl and use it where possible
5 years ago
Max Katz
86fd1bd7bd
Handle DataGridCell_PointerPressed if not touch
5 years ago
Max Katz
7e3b6ecff5
Handle touch scrolling in DataGrid
5 years ago
Max Katz
98a4364810
Handle horizontal wheel scrolling in DataGrid
5 years ago
mat1jaczyyy
ca2acc9516
WindowImpl: Don't change z-order when Position is set
5 years ago
Max Katz
c285a0e6a8
Fix DataGrid wheel scroll calculation
5 years ago
Steven Kirk
59e18e3517
Add obsolete HandleResized to TopLevel/WindowBase too.
5 years ago
Steven Kirk
08566c36e2
Add in obsolete HandleResized for ApiCompat.
5 years ago
GMIKE
4d8d31dfe9
Properties of PointerEventArgs in TappedEventArgs ( #6322 )
* Properties of PointerEventArgs in TappedEventArgs
* remove InputModifiers and Device properties
* move properties
* remove whitespace
5 years ago
Dan Walmsley
0ddc444d2c
Rename eventargs class.
5 years ago
Dan Walmsley
c9458e5be8
use a ShutdownRequestedEventArgs class to future proof the event args.
5 years ago
Steven Kirk
f1c87b4043
Added KeyboardNavigationMode.Local.
5 years ago
Wiesław Šoltés
de3fdbeaf1
Add ClipGeometry and OpacityMask properties to DrawingGroup
5 years ago
Dan Walmsley
d0fd73729a
clarify functionality on various platforms in event comments.
5 years ago
Dan Walmsley
57ffcb85f7
initial implementation of win32 shutdown cancelling.
5 years ago
Luis von der Eltz
cabe6daa3f
Review changes
5 years ago
Luis von der Eltz
df20794540
Set LightDimissEnabled via SetValue()
5 years ago
Luis von der Eltz
2387e0bb5a
Add option to freez popups (Alt + Ctrl + F)
5 years ago
Max Katz
eeb593f041
Remove TextBox margin hack
5 years ago
Giuseppe Lippolis
87ea2915f8
fixes(DataGrid): Fix binding IsVisible
5 years ago
dvdsvdv vrfsv
c45b5c042b
fix
5 years ago