WinPopUp 1.0.3

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

WinPopUp

WinPopUp è una libreria .NET che permette di associare popup informativi ai controlli di un form Windows Forms.

Installazione

Aggiungi la libreria WinPopUp.dll al tuo progetto tramite Riferimenti.

Utilizzo

Importa la libreria nel tuo codice:

Imports WinPopUp

Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        Try
            ' Carica le immagini dalle risorse (My.Resources)
            Dim imgInfo As Image = My.Resources.cashier  ' Nome dell'immagine senza estensione
            Dim imgWarning As Image = My.Resources.calculator_50

            ' Associa i popup ai pulsanti
            PopupHelper.AttachPopup(Button1, "Informazioni utili" & vbCr & "Altre informazioni", imgInfo)
            PopupHelper.AttachPopup(Button2, "Attenzione! Controlla i dati", imgWarning)
        Catch ex As Exception
            MessageBox.Show("Errore nel caricamento delle immagini: " & ex.Message)
        End Try
    End Sub
End Class
There are no supported framework assets in this 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.3 147 4/4/2025
1.0.1 166 4/1/2025