<Controls:CustomButton Name="btnOpenImg" Content="打开图片" Grid.Row="0" Width="90" Height="20" Margin="0,5,5,0" Command="{me:CommandMarkup EditorOpenImgCommand}" CommandParameter="{Binding }"/>
前台有这样一个控件  连接到一个EditorOpenImgCommand文件
在这个文件中做处理
public void Execute(object parameter)
        {
            CmsLog.GetInstance().MethodStart(System.Reflection.MethodBase.GetCurrentMethod());
            //处理代码:从本地打开一个文件
           
        }请问:  
      前台用什么控件显示这个图片 
      关键是这个处理代码怎么写