I tested Blu and I noticed that I can drag the window. This window is transparent. I tried to do the same with Thumb, but I don't know how to make it transparent. The rest of the window is transparent, but the thumb is not.
Is there a way to make my thumb transparent or use a different technique?
I am using this event:
private void DragThumb_DragDelta(object sender, System.Windows.Controls.Primitives.DragDeltaEventArgs e)
{
Canvas.SetLeft(this, Canvas.GetLeft(this) + e.HorizontalChange);
Canvas.SetTop(this, Canvas.GetTop(this) + e.VerticalChange);
}
thanks
source
share