WPF - 在视图模型中访问GDPicture对象

时间:2013-05-21 20:43:48

标签: wpf xaml mvvm viewmodel dependency-properties

我正在使用MVVM,不知怎的,我应该在我的viewmodel中访问GDpicture对象。 这是XAML

 <WindowsFormsHost x:Name="WindowsFormsHost1"   Height="991" Width="1583">
        <gdpicture:GdViewer x:Name="m_GDViewer"                                
                            BackColor="White" Margin="5,5,5,5" DisplayQuality="DisplayQualityBicubicHQ" 
                            DocumentAlignment="DocumentAlignmentMiddleCenter"
                            DocumentPosition="DocumentPositionMiddleCenter" 
                            MouseButtonForMouseMode="MouseButtonLeft" 
                            MouseWheelMode="MouseWheelModeZoom" RectBorderSize="1"  RectIsEditable="True" ZoomMode="ZoomModeFitToViewer" ZoomStep="25" />
    </WindowsFormsHost>

我应该使用什么样的Binding来获取我的视图模型中的GDViewer对象? (我正在尝试使用m_GDViewer.DisplayFromFile(filename)。但是在viewmodel中无法访问m_GDViewer。但我只能从后面的xaml代码访问它)。

0 个答案:

没有答案