Reputation: 6259
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
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