Skip to content
Closed
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
6 changes: 6 additions & 0 deletions Source/SVGImage/SVG/SVGImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@ public Drawing ImageSource
set { this.SetValue(ImageSourcePoperty, value); }
}

public Rect Bounds
{
get { return m_drawing.Bounds; }
set { }
}

public bool UseAnimations
{
get { return (bool)GetValue(UseAnimationsProperty); }
Expand Down