Loading XAML at runtime using the MVVM pattern in WPF

前端 未结 2 1129
轻奢々
轻奢々 2020-12-06 15:02

This is a question that extends from the originally posted here: Link to loading-xaml through runtime

I\'m working on a WPF MVVM application that loads XAML content

相关标签:
2条回答
  • 2020-12-06 15:11

    I have a working solution now and I'd like to share it. Unfortunately I did not get rid of code-behind completely but it works as I expect it to. Here is how it works(simplified):

    I have my simplified ViewModel:

    public class MyViewModel : ViewModelBase
    {
       //This property implements INPC and triggers notification on Set
       public string XamlViewData {get;set;}
    
       public ViewModel()
       {
          GetXamlFormData();  
       }
    
       //Gets the XAML Form from an external source (e.g. Database, File System)
       public void GetXamlFormData()
       {
           //Set the Xaml String property
           XamlViewData = //Logic to get XAML string from external source
       }
    }
    

    Now my View:

    <UserControl.Resources>
    <ViewModel:MyViewModel x:Key="Model"></ViewModel:MyViewModel>
    </UserControl.Resources>
    <Grid DataContext="{StaticResource Model}">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition/>
        </Grid.RowDefinitions>
        <StackPanel>
        <!-- This is the Grid used as a Place Holder to populate the dynamic content!-->
        <Grid x:Name="content" Grid.Row="1" Margin="2"/>
        <!-- Then create a Hidden TextBlock bound to my XamlString property. Right after binding happens I will trigger an event handled in the code-behind -->
        <TextBlock Name="tb_XamlString" Text="{Binding Path=XamlViewData, Mode=TwoWay, UpdateSourceTrigger=LostFocus, NotifyOnValidationError=True, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}" Visibility="Hidden" Loaded="tb_XamlString_Loaded" />
        </StackPanel>
    </Grid>
    

    Basically I created a hidden TextBlock bound to my XAML String property in the ViewModel and I hooked its Loaded event to an event handler in the code behind of the View:

        private void tb_XamlString_Loaded(object sender, RoutedEventArgs routedEventArgs)
        {
            //First get the ViewModel from DataContext
            MyViewModel vm = content.DataContext as MyViewModel;
            FrameworkElement rootObject = XamlReader.Parse(vm.XamlViewData) as FrameworkElement;
            //Add the XAML portion to the Grid content to render the XAML form dynamically!
            content.Children.Add(rootObject);
        }
    

    This may not be the most elegant but gets the job done. Like some people say, in MVVM there are some cases like this where little code-behind code is needed. It doesn't hurt and also part of this solution still uses the V-VM Binding principles when using the VM to retrieve and populate the XamlString property and exposing it to the View. If we would like to Unit Test the XAML parsing and loading functionality we could delegate it to a separate class.

    I hope someone finds this useful!

    0 讨论(0)
  • 2020-12-06 15:19

    I'm having trouble understanding what you're saying, so my answer will be based on my interpretation. You should consider posting a sample (simplified) of what you're trying to do.

    1) I think you're misunderstanding what MVVM does. MVVM is mostly a binding-based pattern. Your view model should be exposing properties containing business objects and your view should just be binding to those properties. If I am misunderstanding you, and that's what you are doing, then your problem is that your view needs to be aware of when the properties get updated (after you deserialize your xaml, etc). There are two ways to do this: INotifyPropertyChanged interface on your viewmodel, or make your view model inherit from DependencyObject, and make the properties dependency properties. I won't go into details here, because this is a large subject that you should research on Google before making a decision.

    2) Generally speaking, you shouldn't use click events inside your view if you're using MVVM. Instead, create properties on the view model of type ICommand (and create ICommand implementations to match, or use an implementation of DelegateCommand (google it) which will allow you to use delegates to implement the interface. The idea is, your view binds to the property and executes the handler directly inside the viewmodel.

    3) If you want to push information from the viewmodel to the view, then you should create an event on the viewmodel and subscribe to it in the view, but this is a last resort, only to be used in cases like displaying a new window, etc. Generally, you should be using binding.

    4) To be more specific about what you're doing, you should be binding your Grid's ItemsSource property to some property on the view model. Note, the property on the view model should be of type ObservableCollection<T> if you want to be able to add items and get instant updates.

    Hope this helps.

    0 讨论(0)
提交回复
热议问题