I have created a custom messageBox Window to replace the typical MessageBox.
My custom messageBox (child Window) needs parent window to be passed as an argument. The parent window is where child window will be located within in the location specified (Top Left, Top Center, etc.) also as an argument.
So when calling my custom messageBox from view model, I need to get the Window to pass it through. How can I get the Window associated to the view model?
Maybe using an Interface like commented here? I am trying to implement it but this.DataContext.View does not exist.
I am using Visual Studio 2008.
ATTEMPT #1: mm8 solution
<Window x:Class="MyNamespace.Main"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:viewmodel="clr-namespace:MyNamespace.ViewModels">
<Window.Resources>
<viewmodel:MainViewModel x:Key="wMainViewModel" />
</Window.Resources>
<Grid DataContext="{StaticResource wMainViewModel}">
</Grid>
</Window>
Taken into account that I initialize DataContext from xaml and not in code-behind from constructor, how can I pass the view to the view model??
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…