CrissCross 1.0.18
See the version list below for details.
dotnet add package CrissCross --version 1.0.18
NuGet\Install-Package CrissCross -Version 1.0.18
<PackageReference Include="CrissCross" Version="1.0.18" />
paket add CrissCross --version 1.0.18
#r "nuget: CrissCross, 1.0.18"
// Install CrissCross as a Cake Addin #addin nuget:?package=CrissCross&version=1.0.18 // Install CrissCross as a Cake Tool #tool nuget:?package=CrissCross&version=1.0.18
CrissCross
A Navigation Framework for ReactiveUI based projects
What is CrissCross?
CrissCross is a navigation framework for ReactiveUI based projects. It is designed to be used with ReactiveUI, but could be adapted to be used with any MVVM framework.
Why CrissCross?
CrissCross is designed to be a simple, lightweight, and easy to use navigation framework. It is designed to be used with ReactiveUI.
How do I use CrissCross?
Step 1: Install CrissCross
CrissCross is available on NuGet. You can install it using the NuGet Package Manager:
Install-Package CrissCross
or
Install-Package CrissCross.WPF
or
Install-Package CrissCross.XamForms
or
Install-Package CrissCross.MAUI
or
Install-Package CrissCross.Avalonia
or
Install-Package CrissCross.WinForms
Step 2: Create a ViewModel
Create a ViewModel that inherits from RxObject
. This is the ViewModel that will be used for the MainWindow.
public class MainWindowViewModel : RxObject
{
public MainWindowViewModel()
{
this.BuildComplete(() =>
{
// Do something when the IOC Container is built
});
// Setup the IOC Container
Locator.CurrentMutable.RegisterConstant<MainViewModel>(new());
Locator.CurrentMutable.Register<IViewFor<MainViewModel>>(() => new MainView());
Locator.CurrentMutable.RegisterConstant<FirstViewModel>(new());
Locator.CurrentMutable.Register<IViewFor<FirstViewModel>>(() => new FirstView());
// Notify the application that the IOC Container that it is complete and ready to use.
Locator.CurrentMutable.SetupComplete();
}
}
Step 3: Create a View
Create a View that inherits from NavigationWindow
. This is the View that will be used for the MainWindow.
add xmlns:rxNav="https://github.com/ChrisPulman/CrissCross" to the Window inherits in XAML.
Change Window to rxNav:NavigationWindow in XAML.
Add x:TypeArguments="local:MainWindowViewModel"
public partial class MainWindow : NavigationWindow<MainWindowViewModel>
{
public MainWindow()
{
// Remember to set x:Name in XAML to "mainWindow"
InitializeComponent();
this.WhenActivated(disposables =>
{
// Do something when the View is activated
// Configure the Navigation for the MainWindow
NavBack.Command = ReactiveCommand.Create(() => this.NavigateBack(), CanNavigateBack).DisposeWith(d);
// Navigate to the MainViewModel
this.NavigateToView<MainViewModel>();
});
}
}
Step 4: Create a ViewModel
Create a ViewModel that inherits from RxObject
. This is the ViewModel that will be used for the MainView.
public class MainViewModel : RxObject
{
public MainViewModel()
{
this.BuildComplete(() =>
{
// Do something when the IOC Container is built
// Configure the Navigation for the MainViewModel using, you will pass the name of the Navigation Host Window that you want to navigate with.
this.NavigateBack("mainWindow")
this.CanNavigateBack("mainWindow")
this.NavigateToView<FirstViewModel>("mainWindow")
});
}
}
Step 5: Create a View
Create a View that inherits from ReactiveUserControl
. This is the View that will be used for the MainView.
public partial class MainView : ReactiveUserControl<MainViewModel>
{
public MainView()
{
InitializeComponent();
this.WhenActivated(disposables =>
{
// Do something when the View is activated
});
}
}
Step 6: For WPF Applications Configure Single Instance Application if required
If you want to prevent multiple instances of the application from running at the same time, you can use the Make.SingleInstance
method.
protected override void OnStartup(StartupEventArgs e)
{
// This will prevent multiple instances of the application from running at the same time.
Make.SingleInstance("MyUniqueAppName ddd81fc8-9107-4e33-b848-cac4c3ec3d2a");
base.OnStartup(e);
}
Step 7: Run the application
Run the application and you should see the MainView.
Avalonia
Step 1: Install CrissCross
CrissCross is available on NuGet. You can install it using the NuGet Package Manager:
Install-Package CrissCross.Avalonia
Step 2: Create a ViewModel
Create a ViewModel that inherits from RxObject
. This is the ViewModel that will be used for the MainWindow.
public class MainWindowViewModel : RxObject
{
public MainWindowViewModel()
{
this.BuildComplete(() =>
{
// Do something when the IOC Container is built
});
// Setup the IOC Container
Locator.CurrentMutable.RegisterConstant<MainViewModel>(new());
Locator.CurrentMutable.Register<IViewFor<MainViewModel>>(() => new MainView());
Locator.CurrentMutable.RegisterConstant<FirstViewModel>(new());
Locator.CurrentMutable.Register<IViewFor<FirstViewModel>>(() => new FirstView());
// Notify the application that the IOC Container that it is complete and ready to use.
Locator.CurrentMutable.SetupComplete();
}
}
Step 3: Create a NavigationView
Create a View that inherits from NavigationWindow
OR NavigationUserControl
. This is the View that will be used for the MainWindow.
add xmlns:rxNav="https://github.com/ChrisPulman/CrissCross"
Change Window to rxNav:NavigationWindow in XAML.
OR Change UserControl to rxNav:NavigationUserControl in XAML.
As Avalonia has two modes of operation you will need to select the correct mode for your application.
public partial class MainWindow : NavigationWindow<MainWindowViewModel>
{
public MainWindow()
{
// Remember to set x:Name in XAML to "mainWindow"
InitializeComponent();
this.WhenActivated(disposables =>
{
// Do something when the View is activated
// Configure the Navigation for the MainWindow
NavBack.Command = ReactiveCommand.Create(() => this.NavigateBack(), CanNavigateBack).DisposeWith(d);
// Navigate to the MainViewModel
this.NavigateToView<MainViewModel>();
});
}
}
Step 4: Create a ViewModel
Create a ViewModel that inherits from RxObject
. This is the ViewModel that will be used for the MainView.
public class MainViewModel : RxObject
{
public MainViewModel()
{
this.BuildComplete(() =>
{
// Do something when the IOC Container is built
// Configure the Navigation for the MainViewModel using, you will pass the name of the Navigation Host Window that you want to navigate with.
this.NavigateBack("mainWindow")
this.CanNavigateBack("mainWindow")
this.NavigateToView<FirstViewModel>("mainWindow")
});
}
}
Step 5: Create a View
Create a View that inherits from ReactiveUserControl
. This is the View that will be used for the MainView.
public partial class MainView : ReactiveUserControl<MainViewModel>
{
public MainView()
{
InitializeComponent();
this.WhenActivated(disposables =>
{
// Do something when the View is activated
});
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net6.0-windows10.0.17763 is compatible. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net7.0-windows10.0.17763 is compatible. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net8.0-windows10.0.17763 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. monoandroid13.0 is compatible. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 is compatible. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. xamarinios10 is compatible. |
Xamarin.Mac | xamarinmac was computed. xamarinmac20 is compatible. |
Xamarin.TVOS | xamarintvos was computed. xamarintvos10 is compatible. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- ReactiveUI (>= 19.5.72)
-
.NETFramework 4.7.2
- ReactiveUI (>= 19.5.72)
-
.NETFramework 4.8
- ReactiveUI (>= 19.5.72)
-
.NETStandard 2.0
- ReactiveUI (>= 19.5.72)
-
MonoAndroid 13.0
- ReactiveUI (>= 19.5.72)
-
net6.0
- ReactiveUI (>= 19.5.72)
-
net6.0-windows10.0.17763
- ReactiveUI (>= 19.5.72)
-
net7.0
- ReactiveUI (>= 19.5.72)
-
net7.0-windows10.0.17763
- ReactiveUI (>= 19.5.72)
-
net8.0
- ReactiveUI (>= 19.5.72)
-
net8.0-windows10.0.17763
- ReactiveUI (>= 19.5.72)
-
Tizen 4.0
- ReactiveUI (>= 19.5.72)
- Tizen.NET (>= 8.0.0.15631)
-
Xamarin.iOS 1.0
- ReactiveUI (>= 19.5.72)
-
Xamarin.Mac 2.0
- ReactiveUI (>= 19.5.72)
-
Xamarin.TVOS 1.0
- ReactiveUI (>= 19.5.72)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on CrissCross:
Package | Downloads |
---|---|
CrissCross.WPF
A Reactive Navigation Framework for ReactiveUI |
|
CrissCross.XamForms
A Reactive Navigation Framework for ReactiveUI |
|
CrissCross.Avalonia
A Reactive Navigation Framework for ReactiveUI |
|
CrissCross.MAUI
A Reactive Navigation Framework for ReactiveUI |
|
CrissCross.WinForms
A Reactive Navigation Framework for ReactiveUI |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.3 | 32 | 11/7/2024 |
2.1.2 | 76 | 11/5/2024 |
2.1.1 | 109 | 11/5/2024 |
2.1.0 | 150 | 10/13/2024 |
2.0.6 | 187 | 8/2/2024 |
2.0.5 | 120 | 8/1/2024 |
2.0.4 | 100 | 7/31/2024 |
2.0.3 | 132 | 7/28/2024 |
2.0.2 | 137 | 7/25/2024 |
2.0.1 | 175 | 7/10/2024 |
2.0.0 | 185 | 5/18/2024 |
1.0.25 | 265 | 4/30/2024 |
1.0.24 | 192 | 4/19/2024 |
1.0.23 | 216 | 4/10/2024 |
1.0.22 | 211 | 3/29/2024 |
1.0.21 | 206 | 3/26/2024 |
1.0.20 | 213 | 3/22/2024 |
1.0.19 | 232 | 3/21/2024 |
1.0.18 | 211 | 3/19/2024 |
1.0.17 | 220 | 3/14/2024 |
1.0.16 | 237 | 3/13/2024 |
1.0.15 | 220 | 3/12/2024 |
1.0.14 | 231 | 3/11/2024 |
1.0.13 | 212 | 3/8/2024 |
1.0.12 | 227 | 3/7/2024 |
1.0.11 | 202 | 3/5/2024 |
1.0.10 | 226 | 2/22/2024 |
1.0.9 | 220 | 2/21/2024 |
1.0.8 | 205 | 2/21/2024 |
1.0.7 | 210 | 2/19/2024 |
1.0.6 | 192 | 2/16/2024 |
1.0.5 | 247 | 2/8/2024 |
1.0.4 | 249 | 1/4/2024 |
1.0.3 | 381 | 9/11/2023 |
1.0.2 | 289 | 9/9/2023 |
1.0.1 | 267 | 9/8/2023 |
1.0.0 | 285 | 9/7/2023 |
0.9.2 | 280 | 9/6/2023 |
0.9.1 | 275 | 8/6/2023 |
0.9.0 | 265 | 7/12/2023 |
0.8.0 | 260 | 6/23/2023 |
0.7.1 | 297 | 4/28/2023 |
0.7.0 | 383 | 3/14/2023 |
0.6.0 | 358 | 3/13/2023 |
0.5.0 | 388 | 3/11/2023 |
0.2.0 | 414 | 2/7/2023 |
0.1.0 | 461 | 1/7/2023 |
Compatability with Net 6/7/8 and netstandard2.0