In MVVM application using Prism, a child view and viewmodel is loaded in parent view UserControl "ContentRegion"
and parent view has fixed size
Height="868"
Width="1024"
MinHeight="868"
MinWidth="1024"
How to resize parent view size from child viewmodel
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:prism="http://prismlibrary.com/"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
prism:ViewModelLocator.AutoWireViewModel="True"
Height="868"
Width="1024"
MinHeight="868"
MinWidth="1024">
<Grid>
<UserControl prism:RegionManager.RegionName="ContentRegion" />
</Grid>
</Window>```