Граф коммитов

13536 Коммитов

Автор SHA1 Сообщение Дата
Darren Batchelor 033e9b12bd Update UI unit test 2021-10-14 11:36:37 -07:00
Darren Batchelor 722dbb03c9 update params comment 2021-10-14 09:37:30 -07:00
Darren Batchelor 7ef191888a Moved code into *.Properties.cs file, wired up IsAlwaysOn flag 2021-10-13 16:35:37 -07:00
Darren Batchelor 6954c0556c Added ConstrainedBox 2021-10-13 14:08:32 -07:00
Pete Ansell c9d29f9c4c Fix to issue #4316 - error in duration to frequency calculation. 2021-10-13 11:54:22 -07:00
Darren Batchelor e2ee28d59f Add implicit converter for integer 2021-10-13 11:00:49 -07:00
Michael Hawker MSFT (XAML Llama) 683a0e7a80
Merge pull request #4310 from Nirmal4G/hotfix/design-tools
Fix Missing Resources Exception leading to VS Designer crash
2021-10-12 17:12:44 -07:00
Sergio Pedri 83bcf26dfa
Merge pull request #4311 from Sergio0694/bugfix/xaml-animation-glitches
Fixed incorrect default easing for XAML animation types
2021-10-13 02:02:09 +02:00
Darren Batchelor d766b9ee59 Initial commit 2021-10-12 09:58:51 -07:00
Sergio Pedri 272eee51a0 Fixed incorrect default easing for XAML animation types 2021-10-12 13:05:12 +02:00
Herrick Spencer d139c80771 Fix for the OnDeviceExtension Sample 2021-10-11 14:14:23 -07:00
Darren Batchelor b4d1237861 Add implicit converter for integer 2021-10-11 11:23:39 -07:00
Nirmal Guru c5d4a5b58e
Simplify Toolbox Icon naming
Since, we only use the same Root Namespace for all controls, we don't need to specify them.
2021-10-08 09:09:25 +05:30
Nirmal Guru 764ce94d17
Fix incorrect Root Namespace
This leads to embedded resources being not found and the VS Designer crashes
2021-10-08 09:09:24 +05:30
Nirmal Guru dd076f3bd8
EmbeddedResource items does not nest generated sources
The "EmbeddedResourceUseDependentUponConvention" does not automatically nest the generated sources to its parent files.
2021-10-08 09:09:22 +05:30
Nirmal Guru 7f681ce490
Remove unnecessary comment in resource files
It just takes up too much space in the DLL's size.
2021-10-08 09:09:18 +05:30
msftbot[bot] 84adf91186 Fixed the debounce extension in order to update to the last action pa… (#4294)
## Fixes #4293

## PR Type

What kind of change does this PR introduce?

Bugfix

## What is the current behavior?

The debounce extension was incorrectly updating the action in the ConcurrentList.

According to documentation the value passed in the `updateValueFactory` function, of the `AddOrUpdate` method, is the current value in the dictionary.

https://docs.microsoft.com/en-us/dotnet/api/system.collections.concurrent.concurrentdictionary-2.addorupdate?view=net-5.0

![image](https://user-images.githubusercontent.com/29243277/135733394-f7c4d682-9c24-45cd-af4d-69721a7c6383.png)

Therefore the current behavior is maintaining the old action and not updating with the new passed action.

```csharp
_debounceInstances.AddOrUpdate(timer, action, (k, v) => v);
```

## What is the new behavior?

Changed so that the action in the `_ debounceInstances` Dictionary is updated with the latest version.

## PR Checklist

Please check if your PR fulfills the following requirements: <!-- and remove the ones that are not applicable to the current PR -->

- [x] Tested code with current [supported SDKs](../#supported)
- [x] Contains **NO** breaking changes
- [x]  Tests for the changes have been added
- [x]  Header has been added to all new source files (run build/UpdateHeaders.bat)

## Other information

PS: The debuonce extension is referenced in the `CanvasPathGeometryPage` class (although this changes does not seem to break it).
2021-10-07 21:29:04 +00:00
Michael Hawker MSFT (XAML Llama) 1dd9c461b2
Update base version.json to start off of 7.1.0-build root now 2021-10-07 13:36:05 -07:00
Michael Hawker MSFT (XAML Llama) 69576f92ef
Merge pull request #4285 from Sergio0694/bugfix/csharp8.0-mvvm-toolkit
Fix MVVM Toolkit build errors when using C# < 9.0
2021-10-07 13:35:32 -07:00
Michael Hawker MSFT (XAML Llama) 9419c7e0ab
Update UnitTests/UnitTests.UWP/Extensions/Test_DispatcherQueueTimerExtensions.cs 2021-10-07 13:23:23 -07:00
Michael Hawker MSFT (XAML Llama) 011a67afc7
Update UnitTests/UnitTests.UWP/Extensions/Test_DispatcherQueueTimerExtensions.cs 2021-10-07 13:22:46 -07:00
Michael Hawker MSFT (XAML Llama) fc5287e187
Merge pull request #4282 from Sergio0694/bugfix/validator-validateall-netfx
Fix MVVM Toolkit LINQ expression issues on .NET Framework
2021-10-06 16:04:51 -07:00
Michael Hawker MSFT (XAML Llama) e471616526
Merge pull request #4280 from Sergio0694/bugfix/pipeline-samples
Fixed incorrect paths for pipeline sample resources
2021-10-06 16:02:14 -07:00
Matheus Inácio 9881a23a1a Added missing file header. 2021-10-04 18:18:14 -03:00
Matheus Inácio b87504c8a1 Implemented test to the debounce extension for the DispatcherQueueTimer. 2021-10-04 13:16:55 -03:00
Matheus Inácio 30d2917e9d Fixed the debounce extension in order to update to the last action passed. 2021-10-02 19:12:44 -03:00
Sergio Pedri 10cf2dde39 Disabled ValidateAllProperties/RegisterAll generators w/ <= 8.0 2021-09-29 11:30:47 +02:00
Sergio Pedri 67ee33f7a7 Removed unnecessary C# version checks in two generators 2021-09-29 11:24:29 +02:00
Sergio Pedri 6a46fb5feb Fixed incorrect path for T-Rex sample image 2021-09-28 15:17:47 +02:00
Sergio Pedri cd5cc40b9e Fixed nullability warning in ObservableValidator
Also fixed some build warnings in the unit test project
2021-09-28 14:39:46 +02:00
Sergio Pedri ebdef69e11 Added short path in fallback logic for RegisterAll 2021-09-28 11:08:51 +02:00
Sergio Pedri 1cdc65db78 Added short path in fallback logic for ValidateAllProperties 2021-09-28 10:52:54 +02:00
Sergio Pedri 4248cf6a33 Added more unit tests for ValidateAllProperties fallback 2021-09-28 10:47:14 +02:00
Sergio Pedri 0109e8bfef Fixed incorrect paths for pipeline sample resources 2021-09-27 13:44:12 +02:00
Michael Hawker MSFT (XAML Llama) fef65a5f3c
Merge pull request #4274 from Sergio0694/bugfix/implicit-animations-reset
Bugfix/implicit animations reset
2021-09-24 19:19:37 -07:00
Sergio Pedri 4612a38f2a Added sample page demo for reset feature 2021-09-24 17:55:26 +02:00
Sergio Pedri f84a747464 Fixed implicit animations reset by setting null 2021-09-24 17:55:17 +02:00
Michael Hawker MSFT (XAML Llama) d775ea406d
Update Pull Request Template to not mention issue #1234 2021-09-23 08:39:52 -07:00
Michael Hawker MSFT (XAML Llama) ad58a3e275
Merge pull request #4268 from michael-hawker/sample-updates-7dot1
Small Sample updates 7.1
2021-09-22 17:41:51 -07:00
michael-hawker dd9e3b896a Update new samples 2021-09-22 15:33:30 -07:00
michael-hawker 05d5f05915 Test fix for ListDetailsView 2021-09-22 15:33:24 -07:00
michael-hawker 98985af02a Remove Warnings 2021-09-22 15:33:11 -07:00
michael-hawker 41539089d9 Update Copyright 2021-09-22 15:33:01 -07:00
Michael Hawker MSFT (XAML Llama) da3c2290b3
Merge pull request #4267 from XAML-Knight/dev/DQTimerEx
Modify DispatcherQueueTimer source for XML docs output
2021-09-22 15:12:20 -07:00
Rosario Pulella e09c779c16
Merge pull request #4265 from Sergio0694/bugfix/shadow-animation-crash
Fixed crashes for shadow animations on unloaded items
2021-09-22 15:39:35 -04:00
Darren Batchelor d1b4993283 Modify source for docs output 2021-09-22 12:29:03 -07:00
XAML-Knight 0b976f95e5
Merge pull request #4264 from RosarioPulella/fix/sample-docurl
samples.json: Fix Graph doc url
2021-09-21 14:43:10 -07:00
Sergio Pedri d7cf27fb8d Fixed crashes for shadow animations on unloaded items 2021-09-21 22:03:11 +02:00
Rosario Pulella f623901b86
samples.json: Fix Graph doc url 2021-09-21 14:36:06 -04:00
Michael Hawker MSFT (XAML Llama) 760ab9ff25
Merge pull request #4260 from michael-hawker/shadow-docs
Update AttachedShadow example and future doc links
2021-09-21 08:09:49 -07:00