PopUpWindow 1.0.8.51
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package PopUpWindow --version 1.0.8.51
NuGet\Install-Package PopUpWindow -Version 1.0.8.51
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PopUpWindow" Version="1.0.8.51" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PopUpWindow" Version="1.0.8.51" />
<PackageReference Include="PopUpWindow" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PopUpWindow --version 1.0.8.51
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PopUpWindow, 1.0.8.51"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PopUpWindow@1.0.8.51
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PopUpWindow&version=1.0.8.51
#tool nuget:?package=PopUpWindow&version=1.0.8.51
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Avalonia.PopUpWindow
This is a WIP nuget package that lets you run a pop up window easily in avalonia.
this is a good example of a code you can do with the nuget package:
using Avalonia.Controls;
using Avalonia.Controls.Primitives;
using Avalonia.Interactivity;
using PopUpWindowNamespace;
using System;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Threading.Tasks;
using static System.Net.Mime.MediaTypeNames;
namespace popUpTest
{
public partial class MainWindow : Window
{
PopUp popup = new PopUp();
public MainWindow()
{
InitializeComponent();
TestingStuff();
}
public async void TestingStuff()
{
popup.PopUpWindow(false, true, Avalonia.Media.Colors.Black, Avalonia.Media.Colors.White, 500, 150, Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Converter.ico"), "Example", Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Converter.png"), "This is an easy example :)", true, true, true, true);
popup.YesButton.Click += YesClickVoid;
popup.OkButton.Click += OkClickVoid;
popup.NoButton.Click += NoClickVoid;
}
public void YesClickVoid (object ?sender, RoutedEventArgs e)
{
Trace.Write("\n Yes Button was pressed :) but outside the initialization void \n");
popup.ActualPopUp.Close();
}
public void OkClickVoid(object? sender, RoutedEventArgs e)
{
Trace.Write("\n Ok Button was pressed :) but outside the initialization void \n");
}
public void NoClickVoid(object? sender, RoutedEventArgs e)
{
Trace.Write("\n No Button was pressed :) but outside the initialization void \n");
}
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Avalonia (>= 12.0.3)
- Avalonia.Desktop (>= 12.0.3)
- Markdown.Avalonia (>= 12.0.0-a3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.9.1 | 285 | 5/25/2026 |
| 1.0.9 | 607 | 5/21/2026 |
| 1.0.8.51 | 98 | 5/21/2026 |
| 1.0.8.47 | 94 | 5/21/2026 |
| 1.0.8.46 | 94 | 5/21/2026 |
| 1.0.8.45 | 95 | 5/21/2026 |
| 1.0.8.44 | 97 | 5/21/2026 |
| 1.0.8.43 | 93 | 5/20/2026 |
| 1.0.8.42 | 97 | 5/20/2026 |
| 1.0.8.41 | 89 | 5/20/2026 |
| 1.0.8.40 | 98 | 5/20/2026 |
| 1.0.8.39 | 101 | 5/20/2026 |
| 1.0.8.38 | 96 | 5/20/2026 |
| 1.0.8.37 | 123 | 5/19/2026 |
| 1.0.8.36 | 97 | 5/18/2026 |
| 1.0.8.35 | 97 | 5/18/2026 |
| 1.0.8.34 | 112 | 5/18/2026 |
| 1.0.8.33 | 95 | 5/18/2026 |
| 1.0.8.32 | 103 | 5/18/2026 |
| 1.0.8.31 | 101 | 5/18/2026 |
Loading failed