MainView.xaml
<Metro:MetroWindow
x:Class="WpfApp21.View.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp21.View"
mc:Ignorable="d"
Title="MainView" Height="450" Width="800"
x:Name="viewMainView"
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
xmlns:l="http://schemas.livet-mvvm.net/2011/wpf"
xmlns:vm="clr-namespace:WpfApp21.ViewModel"
xmlns:Metro="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
ShowMaxRestoreButton="False"
>
<Window.DataContext>
<vm:MainViewModel/>
</Window.DataContext>
<i:Interaction.Triggers>
<i:EventTrigger EventName ="StateChanged">
<l:LivetCallMethodAction MethodTarget="{Binding}" MethodName="OnStateChanged" MethodParameter="{Binding ElementName=viewMainView}" />
</i:EventTrigger>
</i:Interaction.Triggers>
<Grid>
</Grid>
</Metro:MetroWindow>