Sergey Nechaev
Sergey Nechaev
Possible temporary workaround * Grab `IMvxNativeColor` implementation for WPF from here (link to the version 8.0.2, you may need to choose other version to match mvvmCross version): https://github.com/MvvmCross/MvvmCross/blob/8.0.2/MvvmCross.Plugins/Color/Platforms/Wpf/MvxWpfColor.cs * Include...
Thank you! I can confirm that workaround works perfectly and I was able to adapt it to the production project build process.
Just for the history- it's possible to have negative values there ``` KEY: Clr TYPE: DescValueType.OBJECTTYPE VALUE_T:RGBC VALUE: [ActionDescriptor] KEY: __COUNT__ TYPE: null VALUE: 3 KEY: redFloat TYPE: DescValueType.DOUBLETYPE VALUE:...
@davidbritch, Sorry, I fully understand that Xamarin is about to EOL. But unless I'm missing something, this functionality has been fully migrated to net.macos/net.ios as the successor to Xamarin. And...
Just to track the current situation: * This is still a problem for `net8-macos` projects, even without localization (just with a constant value of `CFBundleName & CFBundleDisplayName` in the .plist)...
For my `net8.0-macos` project (which also has a shared cross-platform and windows-specific components in the solution) I use the following workaround with a [reference assemblies](https://learn.microsoft.com/en-us/dotnet/standard/assembly/reference-assemblies#using-reference-assemblies) to be able to compile...
The problem is here: https://github.com/MvvmCross/MvvmCross/blob/296b547f37d04a89180fbe789e1e86d44fe5bce5/MvvmCross/Platforms/Mac/Binding/Views/MvxTableViewSource.cs#L145-L147 It looks like that we should additionally handle the case when `_tableView.SelectedRow == -1`
@Cheesebaron I'm not quite sure how to handle value types here. Let's say we have `ObservableCollection` and the command definition in the VM looks like `IMvxCommand`. What value for the...
The `MvxTableViewSource` are object-based, so we do not know anything about the actual item type `T` here. Am I missing something? Technically, if we will use `null` as the command...
After some thought, I think we can implement some debug time checks against the real `ICommand` implementation then show a log warning in case if the strongly typed `Execute` method...