BlazorEasyDialog 1.0.1

dotnet add package BlazorEasyDialog --version 1.0.1
NuGet\Install-Package BlazorEasyDialog -Version 1.0.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="BlazorEasyDialog" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorEasyDialog --version 1.0.1
#r "nuget: BlazorEasyDialog, 1.0.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.
// Install BlazorEasyDialog as a Cake Addin
#addin nuget:?package=BlazorEasyDialog&version=1.0.1

// Install BlazorEasyDialog as a Cake Tool
#tool nuget:?package=BlazorEasyDialog&version=1.0.1

BlazorEasyDialog

BlazorEasyDialog is a simple, JavaScript-free dialog component for Blazor applications. It allows you to easily create and customize dialogs without relying on external JavaScript libraries.

Features

  • Create dialogs without writing JavaScript
  • Customize dialog appearance and behavior
  • Easily integrate dialogs into existing Blazor applications

Installation

1. Add the nuget package in your Blazor project

  > dotnet add package BlazorDialog
  
  OR
  
  PM> Install-Package BlazorDialog

2. Add css link in head of index.html

<link rel="stylesheet" href="_content/BlazorEasyDialog/css/styles.css">

3. Add css link in the head of index.html

<link rel="stylesheet" href="_content/BlazorEasyDialog/css/styles.css">

4. Add the following line in your _Imports.razor

@using BlazorEasyDialog.Components

Usage/Examples

1. Home.razor

<button class="btn btn-primary" @onclick="()=>ShowDialog = true">Open</button>

@page "/"

<p>@TextValue</p>
<button class="btn btn-primary" @onclick="()=>ShowDialog =true">Open</button>

<BlazorEasyDialog @bind-Visibility="ShowDialog" 
                  SubmitDialog="@OnSubmit"
                  HeaderBackgroundColor="red"
                  HeaderTitle="Dialog Title" >
    <DialogBody>
        <p>This is a dialog body!!</p>
    </DialogBody>
</BlazorEasyDialog>

2. Home.razor.cs

using Microsoft.AspNetCore.Components;

namespace BlazorEasyDialog.Sample.Pages;

public partial class Home : ComponentBase
{
    public string TextValue { get; set; }
    public bool ShowDialog { get; set; }

    private void OnSubmit(bool isSuccess)
    {
        TextValue = isSuccess ? "Success" : "Not success";
        ShowDialog = false;
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.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.1 73 4/10/2024
1.0.0 101 4/7/2024

No specific release notes provided for this version.