我一直在测试Blu,我注意到我可以拖动窗口。这个窗口是透明的。我试图用拇指做同样的事情,但我不知道如何让它透明。窗口的其余部分是透明的,但拇指不是。
有没有办法让拇指透明,或者我应该使用另一种技术?
我使用这个事件:
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);
}
谢谢