BennoDual
BennoDual

Reputation: 6259

Place control over other

I am searching a way to put a ComboBox over another Control with xaml. The new combobox should aligned on the right side of the window. How can I do this? Best Regards, Thomas

Upvotes: 1

Views: 1686

Answers (1)

Hadi Eskandari
Hadi Eskandari

Reputation: 26354

You can use Grid panel. If you do not specify Row/Column of the controls inside the Grid, they will overlap.

Another solution is to use Canvas layout, which is almost like what you have on WinForms, where you can set X/Y of the control and you have more control on where they should appear.

Upvotes: 5

Related Questions