Hi,
Issue https://wpftoolkit.codeplex.com/workitem/22085 has been created,
In the meantime, you can add the following event in th Zoombox.cs file :
Issue https://wpftoolkit.codeplex.com/workitem/22085 has been created,
In the meantime, you can add the following event in th Zoombox.cs file :
public event EventHandler<ScrollEventArgs> Scroll;
and raise it this way in "Zoombox.VerticalScrollBar_Scroll" and "ZoomBox.HorizontalScrollBar_Scroll" methods : EventHandler<ScrollEventArgs> handler = this.Scroll;
if( handler != null )
{
handler( this, e );
}