1

次のコードでは、質問のタイトルにランタイム エラーが表示されます。ただし、MainWindow コンストラクター内で OneWayBind() 呼び出しをコメント アウトすると、アプリはエラーなしで実行されます。何か案は?

public partial class MainWindow : Window, IViewFor<MainViewModel>
{
    public MainWindow()
    {
        ViewModel = new MainViewModel();

        InitializeComponent();

        this.OneWayBind(ViewModel, x => x.ContentItems, x => x.panelDemo.ItemsSource);
    }

    public MainViewModel ViewModel
    {
        get { return (MainViewModel)GetValue(ViewModelProperty); }
        set { SetValue(ViewModelProperty, value); }
    }
    public static readonly DependencyProperty ViewModelProperty =
        DependencyProperty.Register("ViewModel", typeof(MainViewModel), typeof(MainWindow), new PropertyMetadata(null));

    object IViewFor.ViewModel
    {
        get { return ViewModel; }
        set { ViewModel = (MainViewModel)value; }
    }
}

クラス

public class ContentItem
{
    public BitmapImage Image { get; set; }
    public string Name { get; set; }
}

ビューモデル

public class MainViewModel : ReactiveObject
{
    string _Directory;
    public string Directory
    {
        get { return _Directory; }
        set { this.RaiseAndSetIfChanged(x => x.Directory, value); }
    }

    bool _IsBusy;
    public bool IsBusy
    {
        get { return _IsBusy; }
        set { this.RaiseAndSetIfChanged(x => x.IsBusy, value); }
    }

    ObservableAsPropertyHelper<IList<ContentItem>> _ContentItems;
    public IList<ContentItem> ContentItems
    {
        get { return _ContentItems.Value; }
    }

    public MainViewModel()
    {
        this.WhenAny(x => x.Directory, x => x.Value)
            .Do(_ => IsBusy = true)
            .Select(GetImages)
            .Do(_ => IsBusy = false);
    }

    IObservable<IList<ContentItem>> GetImages(string directory)
    {
        return new DirectoryInfo(directory).GetFiles().ToList().ToObservable()
            .Select(x => new ContentItem
            {
                Image = new BitmapImage(new Uri(x.FullName)),
                Name = x.Name
            }).ToList();
    }
}

どうもありがとう!私が ReactiveUI 4.5.0 に望むことは、最新の WPF 実装サンプルがあることだけです! それらはすべて 6 か月以上古いものです。

4

0 に答える 0