Arlo
Arlo
**Is your feature request related to a problem? Please describe.** This feature request stemmed from an issue on Windows where IPFS was randomly going full throttle, presumably to do DHT...
### Current behavior This issue is suspiciously similar to #9380, but you only encounter this _after_ applying the recommended workaround to the WPF head: ```xml ``` After testing workarounds and...
## Fixes #4483 #4478 Closes #4482 Fixed an issue where Aspect Ratio of the image cropper wouldn't update after the image is loaded. ## PR Type What kind of change...
### Overview Bugfix, Fixes #3538 ### Current behavior Narrator does not announce range selector values or updates to the values. ### New behavior Narrator now announces range selector values and...
### Describe the bug When an ImplicitShowAnimation is set on an element that's hosted inside of an ItemsControl that uses `` as the ItemsPanelTemplate, the animation appear to not run....
Closes #72. Adds an `IsCurrency` extension method to StringExtensions that bundles an easy and obvious check for if a string is a valid currency, similar to `IsDecimal`.
# Motivation Streams are an easy way to store/read a chunk of data from an arbitrary source. However, the only convenient option for storing several chunks of (closely related) data...
Continuing from [Currency validation support #4430](https://github.com/CommunityToolkit/WindowsCommunityToolkit/pull/4430#issuecomment-997855061). We'd like to add an `IsCurrency` extension method to [StringExtensions](https://github.com/CommunityToolkit/dotnet/blob/main/CommunityToolkit.Common/Extensions/StringExtensions.cs) that bundles an easy and obvious check for if a string is a valid...
## Expected behavior In unit tests, `Assert` methods such as `Assert.AreEqual(value, otherValue)` should have the first parameter be the expected value, second parameter the actual value. ## Current behavior Some...
### Describe the bug In `ZuneTrackCollectionItem`, we're getting all tracks from the parent collection, then attaching listeners to the event. https://github.com/Arlodotexe/strix-music/blob/7ff97476cdc0219a8fa397dcc237403118acf9bb/src/Shells/StrixMusic.Shells.ZuneDesktop/Controls/Views/Collection/ZuneTrackCollectionItem.cs#L93 This is an `O(n^2)` operation, doubled since we have...