PopUpWindow 1.0.9.1

dotnet add package PopUpWindow --version 1.0.9.1
                    
NuGet\Install-Package PopUpWindow -Version 1.0.9.1
                    
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.9.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PopUpWindow" Version="1.0.9.1" />
                    
Directory.Packages.props
<PackageReference Include="PopUpWindow" />
                    
Project file
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.9.1
                    
#r "nuget: PopUpWindow, 1.0.9.1"
                    
#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.9.1
                    
#: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.9.1
                    
Install as a Cake Addin
#tool nuget:?package=PopUpWindow&version=1.0.9.1
                    
Install as a Cake Tool

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,true, 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 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.

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