FlowDocument和XamlReader x:Class

时间:2014-06-12 08:49:25

标签: c# wpf xaml flowdocument xamlreader

在我的MainWindow中,我的FlowDocumentScrollViewer将其属性Document绑定到 MainViewModel 中的FlowDocument

此文档是从远程计算机上的外部xaml文件存储加载的。目前,我可以通过XamlReader.Load(xamlfile)正确加载此文档,并将其显示在FlowDocumentScrollViewer中。到目前为止一切都很好。

当我尝试在此文档中添加超链接时,会出现此问题。因为要处理RequestNavigate事件,我需要x:Class。暂时这个类必须是我的MainWindow,因为事件是在代码隐藏中处理的。显然,当我在外部文档中添加x:Class="Ugrader.MainWindow"时,我在解析时会得到一个可爱的'System.Windows.Markup.XamlParseException'

那么有办法解决这个问题吗?

这是我的代码

MainWindow.xaml

<Window x:Class="Ugrader.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Geco3-Upgrading version" 
        WindowStyle="none" ResizeMode="NoResize" ShowInTaskbar="False" WindowStartupLocation="CenterScreen"
        Height="400" Width="700"
        DataContext="{Binding Main,Source={StaticResource Locator}}">


        <FlowDocumentScrollViewer Grid.Column="1" Background="{x:Null}" VerticalScrollBarVisibility="Hidden"
                                      Document="{Binding WhatsNewDoc}"/>

</Window>

MainViewModel.cs

namespace Ugrader.ViewModel
{
    public class MainViewModel : ViewModelBase
    {        
        #region Constructor
        public MainViewModel()
        {               
            try
            {
                FileStream xamlFile = new FileStream(updateLocation + "whatsnew.xaml", FileMode.Open, FileAccess.Read);
                FlowDocument current = System.Windows.Markup.XamlReader.Load(xamlFile) as FlowDocument;
                WhatsNewDoc = current;
            }
            catch (Exception)
            {  

            }
        }
        #endregion 

        #region Properties
        private FlowDocument _watsNewDoc = new FlowDocument();
        public FlowDocument WhatsNewDoc
        {
            get
            {
                return _watsNewDoc;
            }
            set
            {
                if(_watsNewDoc != value)
                {
                    _watsNewDoc = value;
                    RaisePropertyChanged("WhatsNewDoc");
                }
            }
        }
        #endregion
    }
}

外部FlowDocument

<FlowDocument x:Class="Ugrader.MainWindow" 
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
              ColumnWidth="400" FontSize="12" FontFamily="Century Gothic" Foreground="LightGray">

  <Paragraph>
    <Italic>
      For additionnal information, please watch this
      <Hyperlink TextDecorations="{x:Null}" RequestNavigate="Hyperlink_Clicked" NavigateUri="path_to_the_file" >video</Hyperlink>
    </Italic>
  </Paragraph>

</FlowDocument>

顺便说一下,有没有办法处理这个解析异常(如果外部文件错误),因为即使在这个try / catch块中,这也会停止我的程序。

提前谢谢你,

巴斯蒂安。

1 个答案:

答案 0 :(得分:1)

我找到了解决问题的方法,它不是很美,不尊重mvvm的精神,但是,这很有效。

因此,由于无法在运行时添加x:Class(我猜),我想到了在运行时处理每个RequestNavigate Hyperlink事件< / strong>即可。因此解决方案非常简单(而且很脏)。

在代码隐藏中(是的,我知道,这很难看),在MainWindow加载的事件中,我找到了文档中的所有超链接,并处理了每个RequestNavigate事件。像这一样简单(和肮脏)。

以下是一些代码:

 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
    var hyperlinks = GetVisuals(this).OfType<Hyperlink>();
    foreach (var link in hyperlinks)
    link.RequestNavigate += link_RequestNavigate;
 }

 public static IEnumerable<DependencyObject> GetVisuals(DependencyObject root)
 {
     foreach (var child in LogicalTreeHelper.GetChildren(root).OfType<DependencyObject>())
     {
         yield return child;
         foreach (var descendants in GetVisuals(child))
             yield return descendants;
     }
 }

如果某人有更好的解决方案,我会接受它。