mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
using ReactiveUI;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Reactive.Disposables;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Messages;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for NavigationView.xaml
|
|
/// </summary>
|
|
public partial class NavigationView : ReactiveUserControl<NavigationVM>
|
|
{
|
|
public NavigationView()
|
|
{
|
|
InitializeComponent();
|
|
this.WhenActivated(dispose =>
|
|
{
|
|
this.BindCommand(ViewModel, vm => vm.BrowseCommand, v => v.BrowseButton)
|
|
.DisposeWith(dispose);
|
|
this.BindCommand(ViewModel, vm => vm.HomeCommand, v => v.HomeButton)
|
|
.DisposeWith(dispose);
|
|
/*
|
|
this.WhenAny(x => x.ViewModel.InstallCommand)
|
|
.BindToStrict(this, x => x.InstallButton.Command)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.CompileCommand)
|
|
.BindToStrict(this, x => x.CompileButton.Command)
|
|
.DisposeWith(dispose);
|
|
*/
|
|
});
|
|
}
|
|
}
|
|
}
|