Amadeusz Sadowski
c7f7640ae7
Removed comments about not working parent ambient providers
8 years ago
Amadeusz Sadowski
fee44d59a2
Cleanup AvaloniaXamlObjectWriter factory methods
8 years ago
Amadeusz Sadowski
976196b3e5
Merge branch 'master' into parent-ambient-provider
8 years ago
Wiesław Šoltés
51eb3e1cef
Merge pull request #1545 from boombuler/FixDragDrop
Fix drag drop
8 years ago
Wiesław Šoltés
5408418cab
Merge branch 'master' into FixDragDrop
8 years ago
boombuler
1e2e5b5efc
fixes #1537
since the `System.Runtime.InteropServices.ComTypes.IDataObject` of .net
core is missing the GUID, any OLE-Calls with this type will fail.
8 years ago
boombuler
1f4d21244a
register `DragSource` after the UI thread has set
due to the fact that the UI-Thread is unknown, there
is no OLEContext available and the platform specific
DragSource will never be used.
8 years ago
danwalmsley
9ac3b9a8c2
Merge pull request #1543 from AvaloniaUI/pr-template
Added PR template.
8 years ago
Steven Kirk
a0e92d85a0
Merge branch 'master' into parent-ambient-provider
8 years ago
Steven Kirk
3514171338
Added PR template.
8 years ago
Eli Arbel
d40a5e958c
Merge pull request #1539 from Gillibald/fix/numericParsing
Removed culture aware parsing of types like Thickness, Matrix, Rect
8 years ago
Eli Arbel
7f62efcd47
Merge branch 'master' into fix/numericParsing
8 years ago
Steven Kirk
d03276c285
Merge pull request #1499 from AvaloniaUI/refactor/properties-overhaul
Allow AvaloniaProperties to be registered anywhere.
8 years ago
Steven Kirk
1da23aa0a3
Merge branch 'master' into refactor/properties-overhaul
8 years ago
Benedikt Schroeder
f2e01704b2
comment removed
8 years ago
Benedikt Schroeder
36be969fc6
Merge branch 'master' into fix/numericParsing
8 years ago
Benedikt Schroeder
4e4c49b1e3
fix comments
8 years ago
Benedikt Schroeder
eb273c0fcb
Inital
8 years ago
danwalmsley
93a6da0b9c
Merge pull request #1526 from AvaloniaUI/feature/context-menus-obey-screen-edges
Make menus and context menus obey screen edges.
8 years ago
Dan Walmsley
fd8e1ecba7
walk tree to find window.
8 years ago
Dan Walmsley
6bb25bea93
fix typo.
8 years ago
danwalmsley
ec21fe244a
Merge branch 'master' into feature/context-menus-obey-screen-edges
8 years ago
Jeremy Koritzinsky
7d8530ea8a
Merge pull request #1524 from Gillibald/fix/1520-BindingExpressionTests
Fix/1520 binding expression tests
8 years ago
Jeremy Koritzinsky
a6f9a4f41b
Merge pull request #1528 from jp2masa/remove-avaloniawin32exception-usings
Removed AvaloniaWin32Exception usings
8 years ago
Jeremy Koritzinsky
f898f5e035
Merge pull request #1530 from jp2masa/defaultrenderloop-nre
Fixed possible NullReferenceException in DefaultRenderLoop
8 years ago
José Pedro
c1d6fe6686
Fixed possible NullReferenceException in DefaultRenderLoop.
8 years ago
José Pedro
35b4913c0b
Removed AvaloniaWin32Exception usings.
8 years ago
Dan Walmsley
240bb40be4
whitespace fixes.
8 years ago
Dan Walmsley
89767c8b78
add comments to new properties.
8 years ago
Dan Walmsley
3bc303c4e8
implement menus and submenus obey screen extremities.
8 years ago
Benedikt Schroeder
b70981b29a
Merge branch 'master' into fix/1520-BindingExpressionTests
8 years ago
Benedikt Schroeder
73ca7334ee
Initial
8 years ago
Benedikt Schroeder
e454318990
Merge pull request #2 from AvaloniaUI/master
Merge
8 years ago
Amadeusz Sadowski
5dabc067ed
Added StaticResource tests for bindings within DataTemplate
8 years ago
Amadeusz Sadowski
8d11d7a5fa
BindingExtension Source tests and sample
#1521
8 years ago
Amadeusz Sadowski
a9ebd15616
Merge branch 'master' into 'parent-ambient-provider'
8 years ago
Amadeusz Sadowski
ccd62038af
Update Portable.Xaml to https://github.com/AvaloniaUI/Portable.Xaml/pull/1
8 years ago
Steven Kirk
9ea2585d2c
Merge pull request #1514 from NatElkins/update-readme-for-beta
Updating readme to reflect beta status
8 years ago
Nat Elkins
648ce074bb
Updating readme to reflect beta status
8 years ago
Amadeusz Sadowski
3f87b9d02d
Support StaticResource in Bindings inside DataTemplate
8 years ago
Steven Kirk
a486a66ad3
Merge pull request #1512 from achal7/fixes/1448
Fixes/1448
8 years ago
Steven Kirk
0ebd79dbce
Merge branch 'master' into fixes/1448
8 years ago
Steven Kirk
1fa411b3d0
Merge pull request #1496 from achal7/master
fix of issue 1479
8 years ago
Steven Kirk
5ae3264dcc
Merge branch 'master' into master
8 years ago
Steven Kirk
09e7e41403
Merge pull request #1510 from temporaryuser0/master
Check if event was handled before in OnTextInput
8 years ago
achal7
a38fe5c915
Seprated InvalidateMeasure out from InvalidateFormattedText.
Whoever needs both the feature, calls then explicitly.
In this way TextPresenter's subscriber for SelectionStart/End doent invalidate measure,
since it should only focus on invalidate formatted text
Fixes #1448
8 years ago
achal7
16c2a181b2
Revert "Fix of issue #1448"
This reverts commit 1ed14986f1a94aef840f0505902c7ef237bb3825.
8 years ago
Achal Shah
7623a18a53
Revert "1) changed UpdateLastState to call UpdateLastState(TState) so that its the only one that has last update control"
This reverts commit 16ea6a31fc .
8 years ago
achal7
802729bd2d
Fix of issue #1448
InvalidateFormattedText was doing mainly 2 activities, resets formatted text and resets measure.
Splited it and extracted reset of formatted text in to seprate function and using it over there.
TextPresenter usis obervable stream for SelectionStart/End property, over there inside subscriber instead of calling InvalidateFormatedText now we use only ClearFormatedText.
The reason is SelectionStart/End is not going to make any changes regarding measurement and hence reseting formatted text alone is sufficient enough
8 years ago
achal7
8b9aace2e4
1) changed UpdateLastState to call UpdateLastState(TState) so that its the only one that has last update control
2) Clear function clean up the states, however currentNode by definition is depends upon one of the state value, hence made that also null,
since there is nothing now to link
8 years ago