Is it possible to bind to a ValueTuple field in WPF with C#7

前端 未结 3 763
慢半拍i
慢半拍i 2020-12-18 18:58

If I have a viewmodel property

public (string Mdf, string MdfPath) MachineDefinition { get; set; }

and I try to bind to it in XAML / WPF

相关标签:
3条回答
  • 2020-12-18 19:41

    The MdfPath approach will never work, since the name part is very restrictive in terms of where it actually exists. Essentially, it is pure compiler voodoo, and doesn't exist in the type model, which means that anything that talks to the type model (which includes reflection, UI tools, serializers, etc) will only see the Item1, Item2 names; not the fake names.

    0 讨论(0)
  • 2020-12-18 19:51

    Something you could try is to implement a value converter. Here is an example...

    public class TupleDisplayNameConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            var tuple = value as (Int32 Id, String Name)?;
    
            if (tuple == null)
                return null;
    
            return tuple.Value.Name;
        }
    
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotSupportedException();
        }
    }
    
    
    <TextBlock Text="{Binding Converter={StaticResource TupleDisplayNameConverter}, Mode=OneWay}" />
    

    Hope this helps.

    0 讨论(0)
  • 2020-12-18 19:55

    The confusion is that for old style Tuple ( pre C#7 ) all the Items were properties

    https://msdn.microsoft.com/en-us/library/dd386940(v=vs.110).aspx

    and thus bindable. For ValueTuple they are fields

    https://github.com/dotnet/runtime/blob/5ee73c3452cae931d6be99e8f6b1cd47d22d69e8/src/libraries/System.Private.CoreLib/src/System/ValueTuple.cs#L269

    and not bindable.

    If you google "WPF Tuple Binding" you get loads of false positives because old style tuples are bindable but the new ones are not.

    0 讨论(0)
提交回复
热议问题