nicolas
nicolas

Reputation: 1

Problem with ScatterView - Components behind disabled

I'm working currently on a simple project which consist of a ScatterView with a lot of items and then a Navigation (Implemented as many buttons).

The problem is that i will like to have the ScatterView on top of everything, so that users can interact on the whole window as they want.

I tried different things:

Do you have any idea how to solve this problem?

Thanks

Upvotes: 0

Views: 360

Answers (2)

Robert Levy
Robert Levy

Reputation: 29083

set Background="{x:Null}" on the scatterview and then put it on top of your other stuff

Upvotes: 1

sofri
sofri

Reputation: 295

I guess that you are using WPF and Surface. If that's true, maybe you can put the Navigation-Stuff inside the ScatterView, together with the other items that you want to move/scale/rotate, and if you do not want the navigation to be moved you can you disable "CanMove", "CanRotate" and "CanScale" and give the Navigation a fixed position in your scatterview with "Center" and "Orientation" . So the items and the navigation will be on the same layer.

Upvotes: 0

Related Questions