|
|
@ -446,14 +446,11 @@ namespace Perspex |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Gets all of the <see cref="PerspexProperty"/> values explicitly set on this object.
|
|
|
/// Gets all of the <see cref="PerspexProperty"/> values explicitly set on this object.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public IEnumerable<Tuple<PerspexProperty, object, BindingPriority>> GetSetValues() |
|
|
public IEnumerable<PerspexPropertyValue> GetSetValues() |
|
|
{ |
|
|
{ |
|
|
foreach (var value in this.values) |
|
|
foreach (var value in this.values) |
|
|
{ |
|
|
{ |
|
|
yield return Tuple.Create( |
|
|
yield return new PerspexPropertyValue(value.Key, value.Value); |
|
|
value.Key, |
|
|
|
|
|
value.Value.Value, |
|
|
|
|
|
(BindingPriority)value.Value.ValuePriority); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|