![]() |
VOOZH | about |
dotnet add package Scover.Dialogs --version 1.4.3
NuGet\Install-Package Scover.Dialogs -Version 1.4.3
<PackageReference Include="Scover.Dialogs" Version="1.4.3" />
<PackageVersion Include="Scover.Dialogs" Version="1.4.3" />Directory.Packages.props
<PackageReference Include="Scover.Dialogs" />Project file
paket add Scover.Dialogs --version 1.4.3
#r "nuget: Scover.Dialogs, 1.4.3"
#:package Scover.Dialogs@1.4.3
#addin nuget:?package=Scover.Dialogs&version=1.4.3Install as a Cake Addin
#tool nuget:?package=Scover.Dialogs&version=1.4.3Install as a Cake Tool
Managed Win32 task dialog wrapper. Supports all native Task Dialog features.
In order to use activation contexts, this package copies the XPThemes.manifest file to the output directory.
Shows a simple task dialog.
using Scover.Dialogs;
using Page page = new()
{
Content = "Sample text",
Buttons = { Button.Yes, Button.No, Button.Cancel }
};
var clickedButton = new Dialog(page).Show();
using Scover.Dialogs;
using Page page1 = new()
{
MainInstruction = "Page #1",
Buttons = new(ButtonStyle.CommandLinks)
{
{ "Label", "Supplemental instruction" },
Button.Cancel
}
};
using Page page2 = new()
{
MainInstruction = "Page #2",
Expander = new("Expanded information")
};
var clickedButton = new MultiPageDialog(page1, new Dictionary<Page, NextPageSelector>
{
[page1] = request => request.Kind is NavigationRequestKind.Cancel ? null : page2,
}).Show();
Check out Tests.cs for more examples.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0-windows7.0 net6.0-windows7.0 is compatible. net7.0-windows net7.0-windows was computed. net8.0-windows net8.0-windows was computed. net9.0-windows net9.0-windows was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
Showing the top 1 popular GitHub repositories that depend on Scover.Dialogs:
| Repository | Stars |
|---|---|
|
5cover/WinClean
Windows optimization and debloating utility.
|
Updated packages. Removed useless types ButtonClickedEventArgs and RadioButtonClickedEventArgs. Page now disposes of its Verification.