CrissCross.WPF.WebView2 2.0.6
dotnet add package CrissCross.WPF.WebView2 --version 2.0.6
NuGet\Install-Package CrissCross.WPF.WebView2 -Version 2.0.6
<PackageReference Include="CrissCross.WPF.WebView2" Version="2.0.6" />
paket add CrissCross.WPF.WebView2 --version 2.0.6
#r "nuget: CrissCross.WPF.WebView2, 2.0.6"
// Install CrissCross.WPF.WebView2 as a Cake Addin #addin nuget:?package=CrissCross.WPF.WebView2&version=2.0.6 // Install CrissCross.WPF.WebView2 as a Cake Tool #tool nuget:?package=CrissCross.WPF.WebView2&version=2.0.6
CrissCross
ReactiveUI 基于的项目导航框架
什么是 CrissCross?
CrissCross 是一个针对 ReactiveUI 基于项目的导航框架。它被设计用于与 ReactiveUI 一起使用,但也可能被调整以用于任何 MVVM 框架。
为什么使用 CrissCross?
CrissCross 被设计为一个简单、轻量级且易于使用的导航框架。它被设计用于与 ReactiveUI 一起使用。
如何使用 CrissCross?
步骤 1:安装 CrissCross
CrissCross 可在 NuGet 上获取。您可以使用 NuGet 包管理器来安装它
Install-Package CrissCross
或
Install-Package CrissCross.WPF
或
Install-Package CrissCross.XamForms
或
Install-Package CrissCross.MAUI
或
Install-Package CrissCross.Avalonia
或
Install-Package CrissCross.WinForms
步骤 2:创建 ViewModel
创建一个从 RxObject
继承的 ViewModel。这是用于 MainWindow 的 ViewModel。
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();
}
}
步骤 3:创建 View
创建一个从 NavigationWindow
继承的 View。这是用于 MainWindow 的 View。在 XAML 中,将 Window 的 xmlns 更改为“https://github.com/reactivemarbles/CrissCross”,并将 Window 更改为 rxNav:NavigationWindow。在 XAML 中添加 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>();
});
}
}
步骤 4:创建 ViewModel
创建一个从 RxObject
继承的 ViewModel。这是用于 MainView 的 ViewModel。
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")
});
}
}
步骤 5:创建 View
创建一个从 ReactiveUserControl
继承的 View。这是用于 MainView 的 View。
public partial class MainView : ReactiveUserControl<MainViewModel>
{
public MainView()
{
InitializeComponent();
this.WhenActivated(disposables =>
{
// Do something when the View is activated
});
}
}
步骤 6:对于 WPF 应用程序,根据需要配置单个实例应用程序
如果您想防止同一时间运行多个应用程序实例,可以使用 Make.SingleInstance
方法。
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);
}
步骤 7:运行应用程序
运行应用程序,您应该能看到 MainView。
Avalonia
步骤 1:安装 CrissCross
CrissCross 可在 NuGet 上获取。您可以使用 NuGet 包管理器来安装它
Install-Package CrissCross.Avalonia
步骤 2:创建 ViewModel
创建一个从 RxObject
继承的 ViewModel。这是用于 MainWindow 的 ViewModel。
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();
}
}
步骤 3:创建 NavigationView
创建一个从 NavigationWindow
或 NavigationUserControl
继承的 View。这是用于 MainWindow 的 View。在 XAML 中将 xmlns 更改为“https://github.com/reactivemarbles/CrissCross”,并将 Window 更改为 rxNav:NavigationWindow。或者在 XAML 中将 UserControl 更改为 rxNav:NavigationUserControl。
Avalonia 有两种操作模式,您需要为您的应用程序选择正确的模式。
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>();
});
}
}
步骤 4:创建 ViewModel
创建一个从 RxObject
继承的 ViewModel。这是用于 MainView 的 ViewModel。
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")
});
}
}
步骤 5:创建 View
创建一个从 ReactiveUserControl
继承的 View。这是用于 MainView 的 View。
public partial class MainView : ReactiveUserControl<MainViewModel>
{
public MainView()
{
InitializeComponent();
this.WhenActivated(disposables =>
{
// Do something when the View is activated
});
}
}
CrissCross.WPF.Plot
CrissCross.WPF.Plot 是一个库,它为 WPF 应用程序提供了一种简单的方法来绘制数据。它旨在与 CrissCross 一起使用。
Adriana Segher 提出了创建一个可以接受反应式数据源的 Plot 的初始概念。然后将其发展成为可以与 CrissCross Wpf 一起使用的库。
该库基于 ScottPlot 构建并提供了一种简单的方法,在 WPF 应用程序中绘制反应式数据。
该库可在 NuGet 上找到。您可以使用 NuGet 包管理器进行安装。
Install-Package CrissCross.WPF.Plot
当前功能
- 从反应式数据源绘制数据
- 从具有多个系列(目前限于 9 个)的反应式数据源数组和数据源中绘制数据
- 使用游标跟踪 CrossHair
- 缩放和平移
- 拖动缩放区域
- 绘制可见性
- 自动缩放/手动缩放
- 启用/禁用与绘制的交互
- 多个 Y 轴
未来功能
- 超过 9 个系列
- 通过属性对话框配置图表
- 轴配置、颜色配置、缩放配置、线条配置
- 具有差异分析的多个游标
- XY 图的多个 X 轴
- 从大数据源(如动态数据源)中选择可供绘制的数据
产品 | 版本 兼容和额外的计算目标框架版本。 |
---|---|
.NET | net6.0-windows7.0 兼容。 net7.0-windows 已计算。 net8.0-windows 已计算。 net8.0-windows7.0 兼容。 |
.NET Framework | net462 兼容。 net463 已计算。 net47 已计算。 net471 已计算。 net472 兼容。 net48 兼容。 net481 已计算。 |
-
.NETFramework 4.6.2
- Microsoft.Web.WebView2 (>= 1.0.2646-prerelease)
-
.NETFramework 4.7.2
- Microsoft.Web.WebView2 (>= 1.0.2646-prerelease)
-
.NETFramework 4.8
- Microsoft.Web.WebView2 (>= 1.0.2646-prerelease)
-
net6.0-windows7.0
- Microsoft.Web.WebView2 (>= 1.0.2646-prerelease)
-
net8.0-windows7.0
- Microsoft.Web.WebView2 (>= 1.0.2646-prerelease)
NuGet 包
此包未由任何 NuGet 包使用。
GitHub 仓库
此包未被任何流行的 GitHub 仓库使用。
版本 | 下载 | 最后更新 |
---|---|---|
2.0.6 | 47 | 8/2/2024 |
2.0.5 | 54 | 8/1/2024 |
2.0.4 | 49 | 7/31/2024 |
2.0.3 | 50 | 7/28/2024 |
2.0.2 | 52 | 7/25/2024 |
2.0.1 | 77 | 7/10/2024 |
2.0.0 | 130 | 5/18/2024 |
1.0.25 | 111 | 4/30/2024 |
1.0.24 | 96 | 4/19/2024 |
1.0.23 | 85 | 4/10/2024 |
1.0.22 | 92 | 3/29/2024 |
1.0.21 | 87 | 3/26/2024 |
1.0.20 | 91 | 3/22/2024 |
1.0.19 | 86 | 3/21/2024 |
1.0.18 | 96 | 3/19/2024 |
1.0.17 | 101 | 3/14/2024 |
1.0.16 | 97 | 3/13/2024 |
1.0.15 | 95 | 3/12/2024 |
1.0.14 | 93 | 3/11/2024 |
1.0.13 | 87 | 3/8/2024 |
1.0.12 | 84 | 3/7/2024 |
1.0.11 | 91 | 3/5/2024 |
1.0.10 | 104 | 2/22/2024 |
1.0.9 | 103 | 2/21/2024 |
1.0.8 | 96 | 2/21/2024 |
1.0.7 | 80 | 2/19/2024 |
1.0.6 | 85 | 2/16/2024 |
1.0.5 | 94 | 2/8/2024 |
1.0.4 | 190 | 1/4/2024 |
1.0.3 | 264 | 9/11/2023 |
1.0.2 | 137 | 9/9/2023 |
与 Net 6/8 和 netstandard2.0 兼容性