I have a radmenu inside a grid row that is nested inside Prism regions about 3 deep.
I want the menu to take all the available space in the row that is set to width = *
The menu seems to be setting it's own width, causing all the dynamic layout in the WPF app to croak because the menu is "Sized"
I want the menu to look like a normal menu and fill the rest of the dead space on the right. So when I maximize or resize WPF just does it's magic. In short the menu cannot have any determinate width.
How do I do that?
Never mind, this works:
I want the menu to take all the available space in the row that is set to width = *
The menu seems to be setting it's own width, causing all the dynamic layout in the WPF app to croak because the menu is "Sized"
I want the menu to look like a normal menu and fill the rest of the dead space on the right. So when I maximize or resize WPF just does it's magic. In short the menu cannot have any determinate width.
How do I do that?
Never mind, this works:
<Grid><Cell *>
<StackPanel Orientation="Vertical" HorizontalAlignment="Stretch">
RadMenu Here
</StackPanel>