Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class StreamColorSource : ColorSource
/// Gets the <see cref="DependencyProperty"/> for the <see cref="Source"/> property.
/// </summary>
public static readonly DependencyProperty SourceProperty =
DependencyProperty.Register(nameof(Source), typeof(UIElement), typeof(StreamColorSource), new PropertyMetadata(null, OnSourceChanged));
DependencyProperty.Register(nameof(Source), typeof(Stream), typeof(StreamColorSource), new PropertyMetadata(null, OnSourceChanged));

/// <summary>
/// Gets or sets the <see cref="UIElement"/> source sampled for a color palette.
Expand Down
Loading